diff options
author | jaubourg <j@ubourg.net> | 2012-05-12 23:26:39 +0200 |
---|---|---|
committer | jaubourg <j@ubourg.net> | 2012-05-12 23:26:39 +0200 |
commit | 7778c7722239bf5b286e4d8f2740af9abe800c09 (patch) | |
tree | c87a1b00e235b58f9b30a588fd3e642f9fa13c72 /src | |
parent | f93a2f569d31c4d1fc86ff3ae9605309ac491d68 (diff) | |
download | jquery-7778c7722239bf5b286e4d8f2740af9abe800c09.tar.gz jquery-7778c7722239bf5b286e4d8f2740af9abe800c09.zip |
Fixes #10285 (for real this time).
Diffstat (limited to 'src')
-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 888c9f33c..8b338a5b4 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -350,7 +350,7 @@ jQuery.fn.extend({ dataType: "script" }); } else { - jQuery.globalEval( ( elem.text || elem.textContent || elem.innerHTML || "" ).replace( rcleanScript, "/*$0*/" ) ); + jQuery.globalEval( ( elem.text || elem.textContent || elem.innerHTML || "" ).replace( rcleanScript, "" ) ); } if ( elem.parentNode ) { |