summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--public/js/slide.js16
1 files changed, 12 insertions, 4 deletions
diff --git a/public/js/slide.js b/public/js/slide.js
index 4962470e..1ff388a5 100644
--- a/public/js/slide.js
+++ b/public/js/slide.js
@@ -107,13 +107,21 @@ window.viewAjaxCallback = function () {
};
function renderSlide(event) {
- var markdown = $(event.currentSlide);
- if (!markdown.attr('data-rendered')) {
+ if (window.location.search.match( /print-pdf/gi )) {
+ var slides = $('.slides');
var title = document.title;
- finishView(markdown);
- markdown.attr('data-rendered', 'true');
+ finishView(slides);
document.title = title;
Reveal.layout();
+ } else {
+ var markdown = $(event.currentSlide);
+ if (!markdown.attr('data-rendered')) {
+ var title = document.title;
+ finishView(markdown);
+ markdown.attr('data-rendered', 'true');
+ document.title = title;
+ Reveal.layout();
+ }
}
}