diff options
author | TJ VanToll <tj.vantoll@gmail.com> | 2014-05-30 09:48:43 -0400 |
---|---|---|
committer | TJ VanToll <tj.vantoll@gmail.com> | 2014-06-02 15:08:40 -0400 |
commit | d41e81980ea89e56c04eb14d8c27f4692b367604 (patch) | |
tree | 5036b7094c94375db9ce93d9a05d4a17bd32b71e /test/unit/ajax.js | |
parent | 97c803acfb667f74774450e93666d9596f92bbf5 (diff) | |
download | jquery-d41e81980ea89e56c04eb14d8c27f4692b367604.tar.gz jquery-d41e81980ea89e56c04eb14d8c27f4692b367604.zip |
Ajax: Support usage without jQuery.event
Fixes #15118
Closes gh-1588
Diffstat (limited to 'test/unit/ajax.js')
-rw-r--r-- | test/unit/ajax.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/unit/ajax.js b/test/unit/ajax.js index a332c929c..0f6de4696 100644 --- a/test/unit/ajax.js +++ b/test/unit/ajax.js @@ -420,6 +420,22 @@ module( "ajax", { }; }); + ajaxTest( "#15118 - jQuery.ajax() - function without jQuery.event", 1, function() { + var holder; + return { + url: url( "data/json.php" ), + setup: function() { + holder = jQuery.event; + delete jQuery.event; + }, + complete: function() { + ok( true, "Call can be made without jQuery.event" ); + jQuery.event = holder; + }, + success: true + }; + }); + ajaxTest( "jQuery.ajax() - context modification", 1, { url: url("data/name.html"), context: {}, |