Selaa lähdekoodia

Allow JS files with query strings to be loaded.

Fixes #1944.
Benjamin Tan 6 vuotta sitten
vanhempi
commit
fd7894fa13
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      js/reveal.js

+ 1 - 1
js/reveal.js

@@ -418,7 +418,7 @@
 		}
 
 		function loadScript( s ) {
-			head.ready( s.src.match( /([\w\d_\-]*)\.?js$|[^\\\/]*$/i )[0], function() {
+			head.ready( s.src.match( /([\w\d_\-]*)\.?js(\?[\w\d.=&]*)?$|[^\\\/]*$/i )[0], function() {
 				// Extension may contain callback functions
 				if( typeof s.callback === 'function' ) {
 					s.callback.apply( this );