Skip to content
Snippets Groups Projects
Commit fa70a7a5 authored by Hakim El Hattab's avatar Hakim El Hattab
Browse files

phantom export throws error if reveal.js isn't present

parent bef81095
No related branches found
No related tags found
No related merge requests found
......@@ -31,20 +31,30 @@ probePage.open( inputFile, function( status ) {
return Reveal.getConfig();
} );
printPage.paperSize = {
width: config.width * ( 1 + config.margin ),
height: config.height * ( 1 + config.margin ),
border: 0
};
printPage.open( inputFile, function( status ) {
window.setTimeout( function() {
console.log( 'Export PDF: Writing file [3/3]' );
printPage.render( outputFile );
console.log( 'Export PDF: Finished successfully!' );
phantom.exit();
}, 1000 );
} );
if( config ) {
printPage.paperSize = {
width: Math.floor( config.width * ( 1 + config.margin ) ),
height: Math.floor( config.height * ( 1 + config.margin ) ),
border: 0
};
printPage.open( inputFile, function( status ) {
window.setTimeout( function() {
console.log( 'Export PDF: Writing file [3/3]' );
printPage.render( outputFile );
console.log( 'Export PDF: Finished successfully!' );
phantom.exit();
}, 1000 );
} );
}
else {
console.log( 'Export PDF: Unable to read reveal.js config. Make sure the input address points to a reveal.js page.' );
phantom.exit(1);
}
} );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment