Skip to content

Commit

Permalink
Fixes #8082. Text to script converter now returns text. Unit test added.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaubourg committed Jan 29, 2011
1 parent b9f2131 commit 85a195c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
5 changes: 4 additions & 1 deletion src/ajax/script.js
Expand Up @@ -9,7 +9,10 @@ jQuery.ajaxSetup({
script: /javascript/
},
converters: {
"text script": jQuery.globalEval
"text script": function( text ) {
jQuery.globalEval( text );
return text;
}
}
});

Expand Down
12 changes: 9 additions & 3 deletions test/unit/ajax.js
Expand Up @@ -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() {
expect(2);
expect(3);
stop();
jQuery.getScript(url("data/test.js"), function() {
jQuery.getScript(url("data/test.js"), function( data ) {
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);
}
});
});
});

Expand Down

0 comments on commit 85a195c

Please sign in to comment.