Merge pull request #669 from jonathanKingston/assignment-index

Fix assignment index loading at the end of the tab strip.
This commit is contained in:
luke crouch 2017-07-14 10:53:10 -05:00 committed by GitHub
commit 6e2ed6393e

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