summaryrefslogtreecommitdiffstats
path: root/toolkit/components/reader
diff options
context:
space:
mode:
authormonikamaheshwari <monikamaheshwari1996@gmail.com>2019-04-27 09:35:59 -0400
committerAscrod <32915892+Ascrod@users.noreply.github.com>2019-04-27 09:35:59 -0400
commit5c350eebcda338152572aea64400a07db5ce2ff4 (patch)
tree5acf6a80965d7d95a75b5811eb36da83d694ba94 /toolkit/components/reader
parentb430def773d2ee2fb027d1798aced0c7566c6ed4 (diff)
downloadUXP-5c350eebcda338152572aea64400a07db5ce2ff4.tar
UXP-5c350eebcda338152572aea64400a07db5ce2ff4.tar.gz
UXP-5c350eebcda338152572aea64400a07db5ce2ff4.tar.lz
UXP-5c350eebcda338152572aea64400a07db5ce2ff4.tar.xz
UXP-5c350eebcda338152572aea64400a07db5ce2ff4.zip
Bug 1429442 - Buttons in "type control" popup in reader mode should have tooltips r=Gijs,MarcoZ
Diffstat (limited to 'toolkit/components/reader')
-rw-r--r--toolkit/components/reader/AboutReader.jsm19
1 files changed, 19 insertions, 0 deletions
diff --git a/toolkit/components/reader/AboutReader.jsm b/toolkit/components/reader/AboutReader.jsm
index 5defa623e..9d9362a0c 100644
--- a/toolkit/components/reader/AboutReader.jsm
+++ b/toolkit/components/reader/AboutReader.jsm
@@ -120,6 +120,25 @@ var AboutReader = function(win, articlePromise) {
}
this._loadArticle();
+
+ let dropdown = this._toolbarElement;
+
+ let elemL10nMap = {
+ ".minus-button": "minus",
+ ".plus-button": "plus",
+ ".content-width-minus-button": "contentwidthminus",
+ ".content-width-plus-button": "contentwidthplus",
+ ".line-height-minus-button": "lineheightminus",
+ ".line-height-plus-button": "lineheightplus",
+ ".light-button": "colorschemelight",
+ ".dark-button": "colorschemedark",
+ ".sepia-button": "colorschemesepia",
+ };
+
+ for (let [selector, stringID] of Object.entries(elemL10nMap)) {
+ dropdown.querySelector(selector).setAttribute("title",
+ gStrings.GetStringFromName("aboutReader.toolbar." + stringID));
+ }
};
AboutReader.prototype = {