diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2014-09-28 13:05:53 +0200 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2014-09-28 13:05:53 +0200 |
commit | e7b9e95369c36ba50212d2d5d913d9043318c18b (patch) | |
tree | babd56f0b7ca82f0e3069ed190d57fc475098c0a /index.html | |
parent | 36cdaefdfd5e0f6111f111dea8acdc81d95cc790 (diff) | |
download | fosdem-2018-presentation-e7b9e95369c36ba50212d2d5d913d9043318c18b.tar fosdem-2018-presentation-e7b9e95369c36ba50212d2d5d913d9043318c18b.tar.gz |
remove classList condition from unrelated dependencies
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -401,8 +401,8 @@ function linkify( selector ) { { src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, { src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, { src: 'plugin/highlight/highlight.js', async: true, condition: function() { return !!document.querySelector( 'pre code' ); }, callback: function() { hljs.initHighlightingOnLoad(); } }, - { src: 'plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } }, - { src: 'plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } } + { src: 'plugin/zoom-js/zoom.js', async: true }, + { src: 'plugin/notes/notes.js', async: true } ] }); |