aboutsummaryrefslogtreecommitdiffstats
path: root/demos/sortable
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2009-10-04 10:29:03 +0000
committerRichard Worth <rdworth@gmail.com>2009-10-04 10:29:03 +0000
commit80725988255b4a743e09857c7848415b959327fa (patch)
tree7d99e06a83ef0896a079fd9d474e59da8115d2a1 /demos/sortable
parentfd976793a98cce2622393ce73c8e8b6a6653b7c2 (diff)
downloadjquery-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.html4
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();
});