Fix assignment index loading at the end of the tab strip. Fixes #672.

This commit is contained in:
Jonathan Kingston 2017-07-14 02:12:24 +01:00
parent 5a1c53fd1d
commit c4d96ce364

View file

@ -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
});