From f62637506dc2fa7f403163c1ff8d29b4c89687e3 Mon Sep 17 00:00:00 2001 From: Felix Nagel Date: Sat, 16 Apr 2011 15:46:17 +0200 Subject: [PATCH] fixed: problem within moveFocus method, thanks to i2amsam, see https://github.com/fnagel/jquery-ui/issues/99 --- ui/jquery.ui.selectmenu.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ui/jquery.ui.selectmenu.js b/ui/jquery.ui.selectmenu.js index 537d6f394..fc476956d 100644 --- a/ui/jquery.ui.selectmenu.js +++ b/ui/jquery.ui.selectmenu.js @@ -597,11 +597,6 @@ $.widget("ui.selectmenu", { newIndex = this._optionLis.size() - 1; } - //Occurs when a full loop has been made - if (newIndex === recIndex) { - return false; - } - var activeID = this.widgetBaseClass + '-item-' + Math.round(Math.random() * 1000); this._focusedOptionLi().find('a:eq(0)').attr('id', ''); -- 2.39.5