aboutsummaryrefslogtreecommitdiff
path: root/src/background/actions/tab.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/background/actions/tab.js')
-rw-r--r--src/background/actions/tab.js34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/background/actions/tab.js b/src/background/actions/tab.js
deleted file mode 100644
index 0f32a90..0000000
--- a/src/background/actions/tab.js
+++ /dev/null
@@ -1,34 +0,0 @@
-import actions from './index';
-
-const openNewTab = async(
- url, openerTabId, background = false, adjacent = false
-) => {
- if (!adjacent) {
- await browser.tabs.create({ url, active: !background });
- return { type: '' };
- }
- let tabs = await browser.tabs.query({
- active: true, currentWindow: true
- });
- await browser.tabs.create({
- url,
- openerTabId,
- active: !background,
- index: tabs[0].index + 1
- });
- return { type: '' };
-};
-
-const openToTab = async(url, tab) => {
- await browser.tabs.update(tab.id, { url: url });
- return { type: '' };
-};
-
-const selected = (tabId) => {
- return {
- type: actions.TAB_SELECTED,
- tabId,
- };
-};
-
-export { openNewTab, openToTab, selected };