mirror of https://github.com/status-im/codimd.git
Update to make removeDOMEvents only process once in slide mode
This commit is contained in:
parent
19a64f6b06
commit
afc4f269bc
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue