Update to make removeDOMEvents only process once in slide mode

This commit is contained in:
Wu Cheng-Han 2017-03-20 11:28:50 +08:00
parent 19a64f6b06
commit afc4f269bc

View file

@ -49,6 +49,7 @@ const deps = [{
const slides = window.RevealMarkdown.slidify(body, slideOptions)
$('.slides').html(slides)
window.RevealMarkdown.initialize()
removeDOMEvents($('.slides'))
$('.slides').show()
}
}, {
@ -109,7 +110,6 @@ function renderSlide (event) {
if (window.location.search.match(/print-pdf/gi)) {
const slides = $('.slides')
let title = document.title
removeDOMEvents(slides)
finishView(slides)
document.title = title
Reveal.layout()
@ -117,7 +117,6 @@ function renderSlide (event) {
const markdown = $(event.currentSlide)
if (!markdown.attr('data-rendered')) {
let title = document.title
removeDOMEvents(markdown)
finishView(markdown)
markdown.attr('data-rendered', 'true')
document.title = title