aboutsummaryrefslogtreecommitdiff
path: root/js/reveal.js
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2012-11-13 09:37:37 -0500
committerHakim El Hattab <hakim.elhattab@gmail.com>2012-11-13 09:37:37 -0500
commitad54b07a849203e751222a24d86a6dbff1067bc0 (patch)
treeb0e43d461f3a326a7e462fe875861fb4673d7f7f /js/reveal.js
parentec0c74421302d1f10378372c23dc5c3e0cee091f (diff)
parent5354b788691f6c466325937794764e14abb421f9 (diff)
downloadfosdem-2018-presentation-ad54b07a849203e751222a24d86a6dbff1067bc0.tar
fosdem-2018-presentation-ad54b07a849203e751222a24d86a6dbff1067bc0.tar.gz
Merge branch 'fix-callback-with-shared-dir' of https://github.com/hashar/reveal.js
Diffstat (limited to 'js/reveal.js')
-rw-r--r--js/reveal.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js
index 751cb8e..310672d 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -232,7 +232,7 @@ var Reveal = (function(){
// Extension may contain callback functions
if( typeof s.callback === 'function' ) {
- head.ready( s.src.match( /([\w\d_\-]*)\.?js|[^\\\/]*$/i )[0], s.callback );
+ head.ready( s.src.match( /([\w\d_\-]*)\.?js$|[^\\\/]*$/i )[0], s.callback );
}
}
}