diff options
author | Hakim El Hattab | 2014-02-17 11:55:38 +0100 |
---|---|---|
committer | Hakim El Hattab | 2014-02-17 11:55:38 +0100 |
commit | b25fa5065720a95ead521d148f5384515549d383 (patch) | |
tree | 4f4aecb95e1a4946bf937bd31ca3a5c71d2e7490 /js/reveal.js | |
parent | 26e9ce1ff7d96601a83e2baa02e46699929ceada (diff) |
remove all use of :not(.image)
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js index 50cd721..fd36f8a 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -913,7 +913,7 @@ var Reveal = (function(){ function enableRollingLinks() { if( features.transforms3d && !( 'msPerspective' in document.body.style ) ) { - var anchors = document.querySelectorAll( SLIDES_SELECTOR + ' a:not(.image)' ); + var anchors = document.querySelectorAll( SLIDES_SELECTOR + ' a' ); for( var i = 0, len = anchors.length; i < len; i++ ) { var anchor = anchors[i]; |