css linting

This commit is contained in:
Kendall Werts
2020-02-20 14:39:54 -06:00
parent 4f1e49bf69
commit a7f62b13fa
4 changed files with 135 additions and 92 deletions
+5 -4
View File
@@ -707,10 +707,7 @@ Logic.registerPanel(P_CONTAINER_INFO, {
window.close();
});
const manageContainer = document.querySelector("#manage-container-link");
Utils.addEnterHandler(manageContainer, async () => {
Logic.showPanel(P_CONTAINER_EDIT, Logic.currentIdentity());
});
},
// This method is called when the panel is shown.
@@ -744,6 +741,10 @@ Logic.registerPanel(P_CONTAINER_INFO, {
windowId: browser.windows.WINDOW_ID_CURRENT,
cookieStoreId: Logic.currentIdentity().cookieStoreId
});
const manageContainer = document.querySelector("#manage-container-link");
Utils.addEnterHandler(manageContainer, async () => {
Logic.showPanel(P_CONTAINER_EDIT, identity);
});
return this.buildOpenTabTable(tabs);
},