diff options
Diffstat (limited to 'src/manipulation.js')
-rw-r--r-- | src/manipulation.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/manipulation.js b/src/manipulation.js index a0e93f7ef..042728573 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -198,7 +198,7 @@ function domManip( collection, args, callback, ignored ) { if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { // Optional AJAX dependency, but won't run scripts if not present - if ( jQuery._evalUrl ) { + if ( jQuery._evalUrl && !node.noModule ) { jQuery._evalUrl( node.src ); } } else { |