Re: What is wrong to generate deckjs slideshow
Posted by
mojavelinux on
Nov 23, 2013; 6:52pm
URL: https://discuss.asciidoctor.org/What-is-wrong-to-generate-deckjs-slideshow-tp1009p1066.html
Charles et al,
The culprit was this line:
[source,html]
--
<script src="deck.js/jquery-1.7.2.min.js"></script>
--
Prior to the recent 1.0 release of deck.js, the version was dropped from the name of the jquery script that's bundled in deck.js. I've update the deck.js backend so that it links to the versionless file name instead.
[source,html]
--
<script src="deck.js/jquery.min.js"></script>
--
-Dan