mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Fixes #8082. Text to script converter now returns text. Unit test added.
This commit is contained in:
parent
b9f2131a9d
commit
85a195c6d5
@ -9,7 +9,10 @@ jQuery.ajaxSetup({
|
|||||||
script: /javascript/
|
script: /javascript/
|
||||||
},
|
},
|
||||||
converters: {
|
converters: {
|
||||||
"text script": jQuery.globalEval
|
"text script": function( text ) {
|
||||||
|
jQuery.globalEval( text );
|
||||||
|
return text;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -1192,11 +1192,17 @@ test("jQuery.get(String, Hash, Function) - parse xml and use text() on nodes", f
|
|||||||
});
|
});
|
||||||
|
|
||||||
test("jQuery.getScript(String, Function) - with callback", function() {
|
test("jQuery.getScript(String, Function) - with callback", function() {
|
||||||
expect(2);
|
expect(3);
|
||||||
stop();
|
stop();
|
||||||
jQuery.getScript(url("data/test.js"), function() {
|
jQuery.getScript(url("data/test.js"), function( data ) {
|
||||||
equals( foobar, "bar", 'Check if script was evaluated' );
|
equals( foobar, "bar", 'Check if script was evaluated' );
|
||||||
setTimeout(start, 100);
|
jQuery.ajax(url("data/test.js"), {
|
||||||
|
dataType: "text",
|
||||||
|
success: function( dataText ) {
|
||||||
|
strictEqual( data, dataText, "Same-domain script requests returns the source of the script (#8082)" );
|
||||||
|
setTimeout(start, 100);
|
||||||
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user