mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Fixing folder menu alignment bug when right-clicking on first visible folder.
This commit is contained in:
parent
d7cfe8187e
commit
bd10f9fe64
1 changed files with 4 additions and 1 deletions
|
@ -106,7 +106,10 @@ NEWSBLUR.Views.Folder = Backbone.View.extend({
|
|||
|
||||
this.check_collapsed({skip_animation: true});
|
||||
this.update_hidden();
|
||||
this.$('.folder_title').eq(0).bind('contextmenu', _.bind(this.show_manage_menu_rightclick, this));
|
||||
if (this.options.depth > 0) {
|
||||
// Only attach to visible folders. Top level has no folder, so wrongly attaches to first child.
|
||||
this.$('.folder_title').eq(0).bind('contextmenu', _.bind(this.show_manage_menu_rightclick, this));
|
||||
}
|
||||
|
||||
return this;
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue