A quick change to detect AIR urls

This commit is contained in:
gnarf 2011-02-24 13:10:33 -06:00
parent 58faec7cb7
commit 14e9da51f9
2 changed files with 13 additions and 1 deletions

View file

@ -2239,6 +2239,18 @@ test("jQuery.ajax - active counter", function() {
ok( jQuery.active == 0, "ajax active counter should be zero: " + jQuery.active );
});
test("jQuery.ajax - compatible with AIR urls"), function() {
expect( 1 );
stop();
$.ajax({
url: "app:/testing",
beforeSend: function() {
ok( this.crossDomain, "Detected crossDomain for AIR Url" );
return false;
}
});
});
}
//}