mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Widget delegation: Fix impl and add basisc test
This commit is contained in:
parent
aa7f8195f8
commit
8b14b35dc7
@ -666,6 +666,40 @@ test( "._bind() to descendent", function() {
|
||||
.trigger( "keydown" );
|
||||
});
|
||||
|
||||
test( "_bind() with delegate", function() {
|
||||
expect( 8 );
|
||||
$.widget( "ui.testWidget", {
|
||||
_create: function() {
|
||||
var that = this;
|
||||
this.element = {
|
||||
bind: function( event, handler ) {
|
||||
equal( event, "click.testWidget" );
|
||||
ok( $.isFunction(handler) );
|
||||
},
|
||||
delegate: function( selector, event, handler ) {
|
||||
equal( selector, "a" );
|
||||
equal( event, "click.testWidget" );
|
||||
ok( $.isFunction(handler) );
|
||||
},
|
||||
trigger: $.noop
|
||||
}
|
||||
this._bind({
|
||||
"click": "handler",
|
||||
"click a": "handler",
|
||||
});
|
||||
this.element.delegate = function( selector, event, handler ) {
|
||||
equal( selector, "form fieldset > input" );
|
||||
equal( event, "change.testWidget" );
|
||||
ok( $.isFunction(handler) );
|
||||
};
|
||||
this._bind({
|
||||
"change form fieldset > input": "handler"
|
||||
});
|
||||
}
|
||||
});
|
||||
$.ui.testWidget();
|
||||
})
|
||||
|
||||
test( "._hoverable()", function() {
|
||||
$.widget( "ui.testWidget", {
|
||||
_create: function() {
|
||||
|
2
ui/jquery.ui.widget.js
vendored
2
ui/jquery.ui.widget.js
vendored
@ -319,7 +319,7 @@ $.Widget.prototype = {
|
||||
return ( typeof handler === "string" ? instance[ handler ] : handler )
|
||||
.apply( instance, arguments );
|
||||
}
|
||||
var match = key.match( /^(\w+)\s*(.*)$/ );
|
||||
var match = event.match( /^(\w+)\s*(.*)$/ );
|
||||
var eventName = match[1] + "." + instance.widgetName,
|
||||
selector = match[2];
|
||||
if (selector === '') {
|
||||
|
Loading…
Reference in New Issue
Block a user