From af98174a19c35bb49bdf3881aeba959d7ab7abf7 Mon Sep 17 00:00:00 2001 From: Jonathan Kingston Date: Fri, 14 Jul 2017 02:12:24 +0100 Subject: [PATCH] Fix assignment index loading at the end of the tab strip. Fixes #672. --- webextension/js/confirm-page.js | 1 + 1 file changed, 1 insertion(+) diff --git a/webextension/js/confirm-page.js b/webextension/js/confirm-page.js index 78e427a..aa8c9a2 100644 --- a/webextension/js/confirm-page.js +++ b/webextension/js/confirm-page.js @@ -82,6 +82,7 @@ load(); async function openInContainer(redirectUrl, cookieStoreId) { const tab = await getCurrentTab(); await browser.tabs.create({ + index: tab[0].index + 1, cookieStoreId, url: redirectUrl });