diff options
author | Felix Nagel <info@felixnagel.com> | 2012-12-13 00:53:51 +0100 |
---|---|---|
committer | Felix Nagel <info@felixnagel.com> | 2012-12-13 00:53:51 +0100 |
commit | 89019606ebd0eb1d117096c7aca702c8a72e6fa4 (patch) | |
tree | 59bf19d0e4c63890c1c81e2d372752232abaae05 /ui | |
parent | ed422bd85525343fab41f44d7968572d885444fa (diff) | |
download | jquery-ui-89019606ebd0eb1d117096c7aca702c8a72e6fa4.tar.gz jquery-ui-89019606ebd0eb1d117096c7aca702c8a72e6fa4.zip |
Selectmenu: revert change to text instead of html, otherwise the unicode special char wont be displayed
Diffstat (limited to 'ui')
-rw-r--r-- | ui/jquery.ui.selectmenu.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.selectmenu.js b/ui/jquery.ui.selectmenu.js index d63e4732c..bdd846f4b 100644 --- a/ui/jquery.ui.selectmenu.js +++ b/ui/jquery.ui.selectmenu.js @@ -260,7 +260,7 @@ $.widget( "ui.selectmenu", { li.addClass( "ui-state-disabled" ); } li.append( $( "<a />", { - text: item.label, + html: item.label, href: "#" }) ); |