mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Hiding context menu on sucessful share.
This commit is contained in:
parent
3a05ccc118
commit
b0904ea0b3
1 changed files with 8 additions and 1 deletions
|
@ -6011,8 +6011,15 @@
|
|||
$share.removeClass('NB-active');
|
||||
}
|
||||
$('.NB-menu-manage-title', $share).text(text);
|
||||
$confirm.slideUp(500);
|
||||
$confirm.slideUp(500, _.bind(function() {
|
||||
if (shared) {
|
||||
var story_id = this.active_story.id;
|
||||
var $story_title = this.find_story_in_story_titles(story_id);
|
||||
this.hide_manage_menu('story', $story_title, true);
|
||||
}
|
||||
}, this));
|
||||
this.flags['showing_confirm_input_on_manage_menu'] = false;
|
||||
|
||||
},
|
||||
|
||||
// ==========================
|
||||
|
|
Loading…
Add table
Reference in a new issue