This commit is contained in:
sThiebaut
2011-12-08 17:07:55 +00:00
parent 79dba6a64d
commit e49b875a1a
10 changed files with 36 additions and 17 deletions
+3
View File
@@ -31,6 +31,9 @@
text-indent:-5000px;
background:url(img/icon/less.gif) no-repeat 2px 2px;
}
#layered_block_left span.closed a {
background:url(img/icon/more.gif) no-repeat 2px 2px;
}
#layered_block_left .layered_subtitle {
display: inline-block;
+2
View File
@@ -240,11 +240,13 @@ function openCloseFilter()
{
$('#'+$(this).attr('rel')).show();
$(this).html('v');
$(this).parent().removeClass('closed');
}
else
{
$('#'+$(this).attr('rel')).hide();
$(this).html('<');
$(this).parent().addClass('closed');
}
e.preventDefault();