Skip to content

Commit

Permalink
Merge pull request #140 from aneesv/context-menu-fix
Browse files Browse the repository at this point in the history
Added blank object argument to menu.popup
  • Loading branch information
felixrieseberg authored May 9, 2019
2 parents 607e6aa + 9f6c5b2 commit 4de7ada
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/context-menu-builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ module.exports = class ContextMenuBuilder {
async showPopupMenu(contextInfo) {
let menu = await this.buildMenuForElement(contextInfo);
if (!menu) return;
menu.popup();
menu.popup({});
}

/**
Expand Down

0 comments on commit 4de7ada

Please sign in to comment.