Format lines to 80 chars
This commit is contained in:
parent
94dedbd0e9
commit
9c1bc5552a
1 changed files with 6 additions and 5 deletions
|
@ -113,11 +113,12 @@ const selectLastTab = () => {
|
||||||
|
|
||||||
const selectPrevSelTab = () => {
|
const selectPrevSelTab = () => {
|
||||||
let tmpPrevSelTab = null;
|
let tmpPrevSelTab = null;
|
||||||
return browser.tabs.query({ currentWindow: true, active: true }).then((tabs) => {
|
return browser.tabs.query({ currentWindow: true, active: true }).then(
|
||||||
tmpPrevSelTab = tabs[0].id;
|
(tabs) => {
|
||||||
browser.tabs.update(prevSelTab, { active: true });
|
tmpPrevSelTab = tabs[0].id;
|
||||||
prevSelTab = tmpPrevSelTab;
|
browser.tabs.update(prevSelTab, { active: true });
|
||||||
});
|
prevSelTab = tmpPrevSelTab;
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
const reload = (current, cache) => {
|
const reload = (current, cache) => {
|
||||||
|
|
Reference in a new issue