mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Changing the hiding/showing of saved star in hopes tha tit fixes the persistent display bug.
This commit is contained in:
parent
b17252d241
commit
5d615e9718
1 changed files with 10 additions and 4 deletions
|
@ -2661,10 +2661,16 @@
|
||||||
});
|
});
|
||||||
$star.tipsy('enable');
|
$star.tipsy('enable');
|
||||||
$star.tipsy('show');
|
$star.tipsy('show');
|
||||||
_.delay(function() {
|
$star.animate({
|
||||||
$star.tipsy('hide');
|
'opacity': 1
|
||||||
$star.tipsy('disable');
|
}, {
|
||||||
}, 850);
|
'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.model.mark_story_as_starred(story_id, story.story_feed_id, function() {});
|
||||||
this.update_starred_count();
|
this.update_starred_count();
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Reference in a new issue