mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Widget: Support events with dashes and colons
Fixes #9708 Closes gh-1159
This commit is contained in:
parent
28310ff55f
commit
be2a339b2b
@ -865,21 +865,36 @@ test( "_on() with delegate to descendent", function() {
|
||||
});
|
||||
|
||||
test( "_on() to common element", function() {
|
||||
expect( 1 );
|
||||
expect( 4 );
|
||||
$.widget( "ui.testWidget", {
|
||||
_create: function() {
|
||||
this._on( this.document, {
|
||||
"customevent": "_handler"
|
||||
"customevent": "_handler",
|
||||
"with:colons": "_colonHandler",
|
||||
"with-dashes": "_dashHandler",
|
||||
"with-dashes:and-colons": "_commbinedHandler"
|
||||
});
|
||||
},
|
||||
_handler: function() {
|
||||
ok( true, "handler triggered" );
|
||||
},
|
||||
_colonHandler: function() {
|
||||
ok( true, "colon handler triggered" );
|
||||
},
|
||||
_dashHandler: function() {
|
||||
ok( true, "dash handler triggered" );
|
||||
},
|
||||
_commbinedHandler: function() {
|
||||
ok( true, "combined handler triggered" );
|
||||
}
|
||||
});
|
||||
var widget = $( "#widget" ).testWidget().testWidget( "instance" );
|
||||
$( "#widget-wrapper" ).testWidget();
|
||||
widget.destroy();
|
||||
$( document ).trigger( "customevent" );
|
||||
$( document ).trigger( "with:colons" );
|
||||
$( document ).trigger( "with-dashes" );
|
||||
$( document ).trigger( "with-dashes:and-colons" );
|
||||
});
|
||||
|
||||
test( "_off() - single event", function() {
|
||||
|
2
ui/jquery.ui.widget.js
vendored
2
ui/jquery.ui.widget.js
vendored
@ -414,7 +414,7 @@ $.Widget.prototype = {
|
||||
handler.guid || handlerProxy.guid || $.guid++;
|
||||
}
|
||||
|
||||
var match = event.match( /^(\w+)\s*(.*)$/ ),
|
||||
var match = event.match( /^([\w:-]*)\s*(.*)$/ ),
|
||||
eventName = match[1] + instance.eventNamespace,
|
||||
selector = match[2];
|
||||
if ( selector ) {
|
||||
|
Loading…
Reference in New Issue
Block a user