diff options
author | Richard Worth <rdworth@gmail.com> | 2009-10-04 10:29:03 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2009-10-04 10:29:03 +0000 |
commit | 80725988255b4a743e09857c7848415b959327fa (patch) | |
tree | 7d99e06a83ef0896a079fd9d474e59da8115d2a1 /demos/sortable | |
parent | fd976793a98cce2622393ce73c8e8b6a6653b7c2 (diff) | |
download | jquery-ui-80725988255b4a743e09857c7848415b959327fa.tar.gz jquery-ui-80725988255b4a743e09857c7848415b959327fa.zip |
sortable portlets demo: Swapped plus and minus icons for more consistency
Diffstat (limited to 'demos/sortable')
-rw-r--r-- | demos/sortable/portlets.html | 4 |
1 files 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('<span class="ui-icon ui-icon-plusthick"></span>') + .prepend('<span class="ui-icon ui-icon-minusthick"></span>') .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(); }); |