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 1c8530ef02
commit af98174a19

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