aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorFelix Nagel <info@felixnagel.com>2012-12-13 00:54:45 +0100
committerFelix Nagel <info@felixnagel.com>2012-12-13 00:54:45 +0100
commitc69d01bed74cb0129043ec6b42eb67c29515d0a7 (patch)
treee5f8af29b00220d1e6bbb077c53c08c7e7624b67 /ui
parent89019606ebd0eb1d117096c7aca702c8a72e6fa4 (diff)
downloadjquery-ui-c69d01bed74cb0129043ec6b42eb67c29515d0a7.tar.gz
jquery-ui-c69d01bed74cb0129043ec6b42eb67c29515d0a7.zip
Selectmenu: replace placeholder entity with &#160;
Diffstat (limited to 'ui')
-rw-r--r--ui/jquery.ui.selectmenu.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.selectmenu.js b/ui/jquery.ui.selectmenu.js
index bdd846f4b..9dcf6469f 100644
--- a/ui/jquery.ui.selectmenu.js
+++ b/ui/jquery.ui.selectmenu.js
@@ -432,7 +432,7 @@ $.widget( "ui.selectmenu", {
element: option,
index: index,
value: option.attr( "value" ),
- label: option.text() || "&nbsp;",
+ label: option.text() || "&#160;",
optgroup: optgroup.attr( "label" ) || "",
disabled: optgroup.attr( "disabled" ) || option.attr( "disabled" )
});