diff options
author | Calyhre | 2014-06-18 14:23:42 +0200 |
---|---|---|
committer | Calyhre | 2014-06-18 14:23:42 +0200 |
commit | ed8d90bc58b811a921cdad53fd6d418be8bb9765 (patch) | |
tree | 34b48ced75155263bc428015618edb243301ab80 /js | |
parent | 4e70cf8126e7e6bd3667479efeecc348dec7e6c0 (diff) |
Fix tests
Diffstat (limited to '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 b4cb17f..f844456 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -3791,7 +3791,7 @@ } function preventSwipe(target) { - while( target && typeof target.hasAttribute == 'function' ) { + while( target && typeof target.hasAttribute === 'function' ) { if(target.hasAttribute('prevent-swipe')) return true; target = target.parentNode; } |