From: Richard Worth Date: Sun, 4 Oct 2009 10:29:03 +0000 (+0000) Subject: sortable portlets demo: Swapped plus and minus icons for more consistency X-Git-Tag: 1.8a2~59 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=80725988255b4a743e09857c7848415b959327fa;p=jquery-ui.git sortable portlets demo: Swapped plus and minus icons for more consistency --- diff --git a/demos/sortable/portlets.html b/demos/sortable/portlets.html index 4494fa673..028d68f0f 100644 --- a/demos/sortable/portlets.html +++ b/demos/sortable/portlets.html @@ -25,12 +25,12 @@ $(".portlet").addClass("ui-widget ui-widget-content ui-helper-clearfix ui-corner-all") .find(".portlet-header") .addClass("ui-widget-header ui-corner-all") - .prepend('') + .prepend('') .end() .find(".portlet-content"); $(".portlet-header .ui-icon").click(function() { - $(this).toggleClass("ui-icon-minusthick"); + $(this).toggleClass("ui-icon-minusthick").toggleClass("ui-icon-plusthick"); $(this).parents(".portlet:first").find(".portlet-content").toggle(); });