diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-11-13 09:37:37 -0500 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-11-13 09:37:37 -0500 |
commit | ad54b07a849203e751222a24d86a6dbff1067bc0 (patch) | |
tree | b0e43d461f3a326a7e462fe875861fb4673d7f7f /js/reveal.js | |
parent | ec0c74421302d1f10378372c23dc5c3e0cee091f (diff) | |
parent | 5354b788691f6c466325937794764e14abb421f9 (diff) | |
download | fosdem-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.js | 2 |
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 ); } } } |