summaryrefslogtreecommitdiffhomepage
path: root/plugin
diff options
context:
space:
mode:
Diffstat (limited to 'plugin')
-rw-r--r--plugin/print-pdf/print-pdf.js38
-rw-r--r--plugin/remotes/remotes.js35
2 files changed, 61 insertions, 12 deletions
diff --git a/plugin/print-pdf/print-pdf.js b/plugin/print-pdf/print-pdf.js
new file mode 100644
index 0000000..8533137
--- /dev/null
+++ b/plugin/print-pdf/print-pdf.js
@@ -0,0 +1,38 @@
+/**
+ * phantomjs script for printing presentations to PDF.
+ *
+ * Example:
+ *
+ * phantomjs print-pdf.js "http://lab.hakim.se/reveal-js?print-pdf" reveal-demo.pdf
+ */
+
+// html2pdf.js
+var page = new WebPage();
+var system = require( 'system' );
+
+page.paperSize = {
+ format: 'A4',
+ orientation: 'landscape',
+ margin: {
+ left: '0',
+ right: '0',
+ top: '0',
+ bottom: '0'
+ }
+};
+page.zoomFactor = 1.5;
+
+var revealFile = system.args[1] || 'index.html?print-pdf';
+var slideFile = system.args[2] || 'slides.pdf';
+
+if( slideFile.match( /\.pdf$/gi ) === null ) {
+ slideFile += '.pdf';
+}
+
+console.log( 'Printing PDF...' );
+
+page.open( revealFile, function( status ) {
+ console.log( 'Printed succesfully' );
+ page.render( slideFile );
+ phantom.exit();
+} ); \ No newline at end of file
diff --git a/plugin/remotes/remotes.js b/plugin/remotes/remotes.js
index a739bb2..a1f10b8 100644
--- a/plugin/remotes/remotes.js
+++ b/plugin/remotes/remotes.js
@@ -3,17 +3,28 @@
* of the folks at http://remotes.io
*/
-head.ready( 'remotes.ne.min.js', function() {
-
- new Remotes("preview")
- .on("swipe-left", function(e){ Reveal.right(); })
- .on("swipe-right", function(e){ Reveal.left(); })
- .on("swipe-up", function(e){ Reveal.down(); })
- .on("swipe-down", function(e){ Reveal.up(); })
- .on("tap", function(e){
- Reveal.toggleOverview();
- });
+(function(window){
-} );
+ /**
+ * Detects if we are dealing with a touch enabled device (with some false positives)
+ * Borrowed from modernizr: https://github.com/Modernizr/Modernizr/blob/master/feature-detects/touch.js
+ */
+ var hasTouch = (function(){
+ return ('ontouchstart' in window) || window.DocumentTouch && document instanceof DocumentTouch;
+ })();
-head.js( 'https://raw.github.com/Remotes/Remotes/master/dist/remotes.ne.min.js' ); \ No newline at end of file
+ if(!hasTouch){
+ head.ready( 'remotes.ne.min.js', function() {
+ new Remotes("preview")
+ .on("swipe-left", function(e){ Reveal.right(); })
+ .on("swipe-right", function(e){ Reveal.left(); })
+ .on("swipe-up", function(e){ Reveal.down(); })
+ .on("swipe-down", function(e){ Reveal.up(); })
+ .on("tap", function(e){
+ Reveal.toggleOverview();
+ });
+ } );
+
+ head.js('https://raw.github.com/Remotes/Remotes/master/dist/remotes.ne.min.js');
+ }
+})(window); \ No newline at end of file