Allow JS files with query strings to be loaded.

Fixes #1944.
This commit is contained in:
Benjamin Tan 2018-01-22 16:33:10 +08:00
parent 0c946ae18b
commit fd7894fa13
1 changed files with 1 additions and 1 deletions

View File

@ -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 );