diff --git a/src/event.js b/src/event.js index ce8b71e30..f6674872d 100644 --- a/src/event.js +++ b/src/event.js @@ -14,7 +14,7 @@ var rformElems = /^(?:input|select|textarea)$/i, rkeyEvent = /^key/, rmouseEvent = /^(?:mouse|pointer|contextmenu)|click/, rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, - rtypenamespace = /^([^.]*)(?:\.(.+)|)$/; + rtypenamespace = /^([^.]*)(?:\.(.+)|)/; function returnTrue() { return true; diff --git a/test/unit/event.js b/test/unit/event.js index 61bdc7bca..c772ef44c 100644 --- a/test/unit/event.js +++ b/test/unit/event.js @@ -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);