From 93e4cd727ee98ccc3adff7e40bfb5372a8ce62c7 Mon Sep 17 00:00:00 2001 From: "YUKI \"Piro\" Hiroshi" Date: Thu, 18 Apr 2019 15:58:28 +0900 Subject: [PATCH] Unify coding style --- src/js/background/backgroundLogic.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/background/backgroundLogic.js b/src/js/background/backgroundLogic.js index 2b034da..0341a52 100644 --- a/src/js/background/backgroundLogic.js +++ b/src/js/background/backgroundLogic.js @@ -238,7 +238,7 @@ const backgroundLogic = { }, async sortTabs() { - const windows = await browser.windows.getAll({ populate: true }); + const windows = await browser.windows.getAll({populate: true}); for (let windowObj of windows) { // eslint-disable-line prefer-const // First the pinned tabs, then the normal ones. await this._sortTabsInternal(windowObj, true);