diff options
author | siikamiika <siikamiika@users.noreply.github.com> | 2020-02-10 11:12:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-10 11:12:36 +0200 |
commit | cbfae2b9d7a5c8824edd7d2d7f80fdacd15cd333 (patch) | |
tree | 26761e13bc7bcb9c3170c477ca0fe8efe43de813 /ext/bg/js/context.js | |
parent | d5708de4eed15567e14e0c1fd4998561eee1680e (diff) | |
parent | 14b9f4a82781b9a5044e22437f6b0b02af67a120 (diff) |
Merge pull request #333 from siikamiika/native-popup-windows
Native popup windows
Diffstat (limited to 'ext/bg/js/context.js')
-rw-r--r-- | ext/bg/js/context.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/bg/js/context.js b/ext/bg/js/context.js index 834174bf..37adb6b7 100644 --- a/ext/bg/js/context.js +++ b/ext/bg/js/context.js @@ -30,12 +30,12 @@ function setupButtonEvents(selector, command, url) { for (const node of nodes) { node.addEventListener('click', (e) => { if (e.button !== 0) { return; } - apiCommandExec(command, {newTab: e.ctrlKey}); + apiCommandExec(command, {mode: e.ctrlKey ? 'newTab' : 'existingOrNewTab'}); e.preventDefault(); }, false); node.addEventListener('auxclick', (e) => { if (e.button !== 1) { return; } - apiCommandExec(command, {newTab: true}); + apiCommandExec(command, {mode: 'newTab'}); e.preventDefault(); }, false); |