From 89019606ebd0eb1d117096c7aca702c8a72e6fa4 Mon Sep 17 00:00:00 2001 From: Felix Nagel Date: Thu, 13 Dec 2012 00:53:51 +0100 Subject: [PATCH] Selectmenu: revert change to text instead of html, otherwise the unicode special char wont be displayed --- 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 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( $( "", { - text: item.label, + html: item.label, href: "#" }) );