From 569d40163ab47e22221144f656de8c03893e033d Mon Sep 17 00:00:00 2001 From: Felix Nagel Date: Mon, 16 Jan 2012 22:51:08 +0100 Subject: [PATCH] fixed: empty option text, thx to @outprove, see #102 --- ui/jquery.ui.selectmenu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/jquery.ui.selectmenu.js b/ui/jquery.ui.selectmenu.js index 14ff857b6..337e875f2 100644 --- a/ui/jquery.ui.selectmenu.js +++ b/ui/jquery.ui.selectmenu.js @@ -308,7 +308,7 @@ $.widget("ui.selectmenu", { thisLiAttr[ 'class' ] = this.namespace + '-state-disabled'; } var thisAAttr = { - html: selectOptionData[i].text, + html: selectOptionData[i].text || ' ', href : '#nogo', tabindex : -1, role : 'option', -- 2.39.5