From e16e99a154d7f3bdbc7ffe56e5c74e9fe90bbd6b Mon Sep 17 00:00:00 2001 From: kborchers Date: Tue, 26 Jul 2011 08:52:33 -0500 Subject: [PATCH] Menu: Added focusing first menu item when menu receives focus and collapseAll when menu loses focus (blur). --- ui/jquery.ui.menu.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/ui/jquery.ui.menu.js b/ui/jquery.ui.menu.js index ad7a9c8c1..c55ae75c9 100644 --- a/ui/jquery.ui.menu.js +++ b/ui/jquery.ui.menu.js @@ -71,6 +71,18 @@ $.widget( "ui.menu", { if ( target.length ) { self.blur( event ); } + }) + .bind( "focus.menu", function( event ) { + if ( self.options.disabled ) { + return; + } + self.focus( event, $( event.target ).children( ".ui-menu-item:first" ) ); + }) + .bind( "blur.menu", function( event ) { + if ( self.options.disabled ) { + return; + } + self.collapseAll( event ); }); this.refresh(); -- 2.39.5