summaryrefslogtreecommitdiffstats
path: root/application/basilisk/base/content/tabbrowser.xml
diff options
context:
space:
mode:
authorFranklinDM <mrmineshafter17@gmail.com>2019-07-05 17:32:17 +0800
committerFranklinDM <mrmineshafter17@gmail.com>2019-07-05 17:32:17 +0800
commit281b66c7a2899380e03a0399a0d5f1ab51b3f3a0 (patch)
tree25d505705bdf21d02b9b903a4de48dfe647bbe49 /application/basilisk/base/content/tabbrowser.xml
parent28439778f7146b62331e7769d33676bd7c44c68c (diff)
downloadUXP-281b66c7a2899380e03a0399a0d5f1ab51b3f3a0.tar
UXP-281b66c7a2899380e03a0399a0d5f1ab51b3f3a0.tar.gz
UXP-281b66c7a2899380e03a0399a0d5f1ab51b3f3a0.tar.lz
UXP-281b66c7a2899380e03a0399a0d5f1ab51b3f3a0.tar.xz
UXP-281b66c7a2899380e03a0399a0d5f1ab51b3f3a0.zip
Issue #1158 - Remove extraneous closing brace
- This also adjusts code indentation
Diffstat (limited to 'application/basilisk/base/content/tabbrowser.xml')
-rw-r--r--application/basilisk/base/content/tabbrowser.xml27
1 files changed, 13 insertions, 14 deletions
diff --git a/application/basilisk/base/content/tabbrowser.xml b/application/basilisk/base/content/tabbrowser.xml
index 0e819a3ed..e64ebb1e6 100644
--- a/application/basilisk/base/content/tabbrowser.xml
+++ b/application/basilisk/base/content/tabbrowser.xml
@@ -6906,21 +6906,20 @@
<handlers>
<handler event="popupshowing">
<![CDATA[
- document.getElementById("alltabs_undoCloseTab").disabled =
- SessionStore.getClosedTabCount(window) == 0;
-
- // Listen for changes in the tab bar.
- tabcontainer.addEventListener("TabAttrModified", this, false);
- tabcontainer.addEventListener("TabClose", this, false);
- tabcontainer.mTabstrip.addEventListener("scroll", this, false);
-
- let tabs = gBrowser.visibleTabs;
- for (var i = 0; i < tabs.length; i++) {
- if (!tabs[i].pinned)
- this._createTabMenuItem(tabs[i]);
- }
- this._updateTabsVisibilityStatus();
+ document.getElementById("alltabs_undoCloseTab").disabled =
+ SessionStore.getClosedTabCount(window) == 0;
+
+ // Listen for changes in the tab bar.
+ tabcontainer.addEventListener("TabAttrModified", this, false);
+ tabcontainer.addEventListener("TabClose", this, false);
+ tabcontainer.mTabstrip.addEventListener("scroll", this, false);
+
+ let tabs = gBrowser.visibleTabs;
+ for (var i = 0; i < tabs.length; i++) {
+ if (!tabs[i].pinned)
+ this._createTabMenuItem(tabs[i]);
}
+ this._updateTabsVisibilityStatus();
]]></handler>
<handler event="popuphidden">