Corrected RegExp to match event namespaces. Fixes #5303.

This commit is contained in:
Robert Katic 2009-11-19 13:11:29 +08:00 committed by John Resig
parent ac00fe5bbb
commit 04dbdb7525
2 changed files with 6 additions and 2 deletions

View file

@ -192,6 +192,10 @@ test("bind(), multi-namespaced events", function() {
jQuery("#firstp").bind("click.test.abc",function(e){
check("click.test.abc", "Namespaced click triggered");
});
// Those would not trigger/unbind (#5303)
jQuery("#firstp").trigger("click.a.test");
jQuery("#firstp").unbind("click.a.test");
// Trigger both bound fn (1)
jQuery("#firstp").trigger("click.test.abc");