From 80725988255b4a743e09857c7848415b959327fa Mon Sep 17 00:00:00 2001 From: Richard Worth Date: Sun, 4 Oct 2009 10:29:03 +0000 Subject: [PATCH] sortable portlets demo: Swapped plus and minus icons for more consistency --- demos/sortable/portlets.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); }); -- 2.39.5