fix double toggle when clicking on star

pull/1/head
eric 2012-10-01 15:24:11 -04:00
parent bf212ed165
commit 99c228323e
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@
var $j = jQuery.noConflict();
$j(document).ready(function(){
$j('#user-block-hide').hide();
$j('#user-block1 span').click(function() {
$j('#user-block1 > div > span').click(function() {
$j(this).toggleClass("active");
$j("#user-block-hide").slideToggle(300);
});