1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-09-28 20:19:12 +01:00

Fix HTML-based PDF generator glitch.

This commit is contained in:
devlinjd 2015-11-07 02:46:12 -05:00
parent 99722e3bd1
commit 8a56c61d56

View File

@ -23,7 +23,7 @@ Definition of the HtmlPdfGenerator class.
*/ */
onBeforeSave: function( info ) { onBeforeSave: function( info ) {
pdf(info.mk, info.outputFile); pdf(info.mk, info.outputFile);
return mk; return info.mk;
} }
}); });