mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
parent
8530a2fc72
commit
479e37f436
@ -537,7 +537,8 @@ jQuery.extend({
|
||||
}
|
||||
|
||||
// We can fire global events as of now if asked to
|
||||
fireGlobals = s.global;
|
||||
// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)
|
||||
fireGlobals = jQuery.event && s.global;
|
||||
|
||||
// Watch for a new set of requests
|
||||
if ( fireGlobals && jQuery.active++ === 0 ) {
|
||||
|
@ -415,6 +415,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: {},
|
||||
|
Loading…
Reference in New Issue
Block a user