diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-06-14 12:33:16 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-06-14 12:33:16 -0400 |
commit | ff39bed57a05ca060033187b8aecebafab357f78 (patch) | |
tree | e82f4c3faa3b5269f0f86e3f186a6f3024ad7466 /ui/jquery.ui.menu.js | |
parent | 00d4beb0ca4a99933bb7e786a1dd50618c180a0b (diff) | |
download | jquery-ui-ff39bed57a05ca060033187b8aecebafab357f78.tar.gz jquery-ui-ff39bed57a05ca060033187b8aecebafab357f78.zip |
Widget: Added _off() for removing event handlers. Fixes #7795 - Widget: _on and _off.
Diffstat (limited to 'ui/jquery.ui.menu.js')
-rw-r--r-- | ui/jquery.ui.menu.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/jquery.ui.menu.js b/ui/jquery.ui.menu.js index eb0be494c..616389ba2 100644 --- a/ui/jquery.ui.menu.js +++ b/ui/jquery.ui.menu.js @@ -44,7 +44,7 @@ $.widget( "ui.menu", { }) // need to catch all clicks on disabled menu // not possible through _on - .bind( "click.menu", $.proxy(function( event ) { + .bind( "click" + this.eventNamespace, $.proxy(function( event ) { if ( this.options.disabled ) { event.preventDefault(); } @@ -168,7 +168,7 @@ $.widget( "ui.menu", { this.element.find( ".ui-menu-divider" ).removeClass( "ui-menu-divider ui-widget-content" ); // unbind currentEventTarget click event handler - $( currentEventTarget ).unbind( "click.menu" ); + this._off( $( currentEventTarget ), "click" ); }, _keydown: function( event ) { |