mirror of
https://github.com/jquery/jquery.git
synced 2026-04-20 03:01:22 -04:00
Event: Empty namespaces should be uneventfully ignored
Thanks @hamishdickson for the report!
Closes gh-1769
(cherry picked from commit 8653068dd6)
This commit is contained in:
@@ -587,6 +587,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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user