mirror of
https://github.com/jquery/jquery.git
synced 2026-04-20 03:01:22 -04:00
Corrected RegExp to match event namespaces. Fixes #5303.
This commit is contained in:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user