diff options
author | Alex Yatskov <FooSoft@users.noreply.github.com> | 2019-10-20 11:06:23 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-20 11:06:23 -0700 |
commit | d8f9c2e1d43a7c37103d7f9a58039bffa4aac495 (patch) | |
tree | dca6abf8ef84eb8cc714ad1f5e78a24a6dbaa21c /ext/bg/js/context.js | |
parent | 65923238556212fef2d7ed7a156373c88382ffd2 (diff) | |
parent | 362a1ed9e4621c47b4dca99777015b90fc90451c (diff) |
Merge pull request #261 from toasted-nutbread/search-button-reuse-tab
Reuse open search tab when clicking search button
Diffstat (limited to 'ext/bg/js/context.js')
-rw-r--r-- | ext/bg/js/context.js | 28 |
1 files changed, 25 insertions, 3 deletions
diff --git a/ext/bg/js/context.js b/ext/bg/js/context.js index a29f7aa7..8e1dbce6 100644 --- a/ext/bg/js/context.js +++ b/ext/bg/js/context.js @@ -25,6 +25,26 @@ function showExtensionInfo() { node.textContent = `${manifest.name} v${manifest.version}`; } +function setupButtonEvents(selector, command, url) { + const node = $(selector); + node.on('click', (e) => { + if (e.button !== 0) { return; } + apiCommandExec(command, {newTab: e.ctrlKey}); + e.preventDefault(); + }) + .on('auxclick', (e) => { + if (e.button !== 1) { return; } + apiCommandExec(command, {newTab: true}); + e.preventDefault(); + }); + + if (typeof url === 'string') { + node.attr('href', url); + node.attr('target', '_blank'); + node.attr('rel', 'noopener'); + } +} + $(document).ready(utilAsync(() => { showExtensionInfo(); @@ -33,9 +53,11 @@ $(document).ready(utilAsync(() => { document.documentElement.dataset.mode = (browser === 'firefox-mobile' ? 'full' : 'mini'); }); - $('.action-open-search').click(() => apiCommandExec('search')); - $('.action-open-options').click(() => apiCommandExec('options')); - $('.action-open-help').click(() => apiCommandExec('help')); + const manifest = chrome.runtime.getManifest(); + + setupButtonEvents('.action-open-search', 'search', chrome.extension.getURL('/bg/search.html')); + setupButtonEvents('.action-open-options', 'options', chrome.extension.getURL(manifest.options_ui.page)); + setupButtonEvents('.action-open-help', 'help'); const optionsContext = { depth: 0, |