Fixes for ESLint

This commit is contained in:
YFdyh000
2017-07-09 05:47:00 +08:00
parent af3e105a41
commit 0a745348f3
14 changed files with 39 additions and 26 deletions

View File

@@ -51,7 +51,7 @@ When first loaded, initialize the page action for all tabs.
*/
var gettingAllTabs = browser.tabs.query({});
gettingAllTabs.then((tabs) => {
for (tab of tabs) {
for (let tab of tabs) {
initializePageAction(tab);
}
});