mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Event: Empty namespaces should be uneventfully ignored
Thanks @hamishdickson for the report! Closes gh-1769
This commit is contained in:
parent
b77983173e
commit
8653068dd6
@ -15,7 +15,7 @@ var
|
||||
rkeyEvent = /^key/,
|
||||
rmouseEvent = /^(?:mouse|pointer|contextmenu)|click/,
|
||||
rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,
|
||||
rtypenamespace = /^([^.]*)(?:\.(.+)|)$/;
|
||||
rtypenamespace = /^([^.]*)(?:\.(.+)|)/;
|
||||
|
||||
function returnTrue() {
|
||||
return true;
|
||||
|
@ -583,6 +583,17 @@ test("namespace-only event binding is a no-op", function(){
|
||||
.off("whoops");
|
||||
});
|
||||
|
||||
test("Empty namespace is ignored", function(){
|
||||
expect( 1 );
|
||||
|
||||
jQuery("#firstp")
|
||||
.on( "meow.", function( e ) {
|
||||
equal( e.namespace, "", "triggered a namespace-less meow event" );
|
||||
})
|
||||
.trigger("meow.")
|
||||
.off("meow.");
|
||||
});
|
||||
|
||||
test("on(), with same function", function() {
|
||||
expect(2);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user