diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-04-24 11:57:59 +0200 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-04-24 11:57:59 +0200 |
commit | 765fc0b0e2863fb747411dd797e2b5c7e460b7dc (patch) | |
tree | ef136fe80a1658cfad699f59a0ac528b308d7540 /toolkit/content/widgets/toolbar.xml | |
parent | bccb9c1708f007ada1ea8c4879db88a587f0a450 (diff) | |
download | UXP-765fc0b0e2863fb747411dd797e2b5c7e460b7dc.tar UXP-765fc0b0e2863fb747411dd797e2b5c7e460b7dc.tar.gz UXP-765fc0b0e2863fb747411dd797e2b5c7e460b7dc.tar.lz UXP-765fc0b0e2863fb747411dd797e2b5c7e460b7dc.tar.xz UXP-765fc0b0e2863fb747411dd797e2b5c7e460b7dc.zip |
[fix typo] palemoon#903 and #975: Customizable toolbars - persist the attribute "collapsed" (backward compatible)
https://github.com/MoonchildProductions/Pale-Moon/pull/903
https://github.com/MoonchildProductions/Pale-Moon/pull/975
https://github.com/MoonchildProductions/UXP/issues/242
Diffstat (limited to 'toolkit/content/widgets/toolbar.xml')
-rw-r--r-- | toolkit/content/widgets/toolbar.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/content/widgets/toolbar.xml b/toolkit/content/widgets/toolbar.xml index e1f58f7aa..55cef8244 100644 --- a/toolkit/content/widgets/toolbar.xml +++ b/toolkit/content/widgets/toolbar.xml @@ -54,7 +54,7 @@ // Look to see if there is a toolbarset. this.toolbarset = this.firstChild; while (this.toolbarset && this.toolbarset.localName != "toolbarset") { - this.toolbarset = toolbarset.nextSibling; + this.toolbarset = this.toolbarset.nextSibling; } if (this.toolbarset) { |