Changing the hiding/showing of saved star in hopes tha tit fixes the persistent display bug.

This commit is contained in:
Samuel Clay 2012-01-11 09:51:56 -08:00
parent b17252d241
commit 5d615e9718

View file

@ -2661,10 +2661,16 @@
});
$star.tipsy('enable');
$star.tipsy('show');
_.delay(function() {
$star.tipsy('hide');
$star.tipsy('disable');
}, 850);
$star.animate({
'opacity': 1
}, {
'duration': 850,
'queue': false,
'complete': function() {
$(this).tipsy('hide');
$(this).tipsy('disable');
}
});
this.model.mark_story_as_starred(story_id, story.story_feed_id, function() {});
this.update_starred_count();
},