Fixes #8082. Text to script converter now returns text. Unit test added.
This commit is contained in:
parent
b9f2131a9d
commit
85a195c6d5
2 changed files with 13 additions and 4 deletions
|
@ -9,7 +9,10 @@ jQuery.ajaxSetup({
|
|||
script: /javascript/
|
||||
},
|
||||
converters: {
|
||||
"text script": jQuery.globalEval
|
||||
"text script": function( text ) {
|
||||
jQuery.globalEval( text );
|
||||
return text;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue