Add tooltip of langage list on toolbar popup

This commit is contained in:
sienori 2018-06-02 22:17:53 +09:00
parent d717bd3b2c
commit d1a9966689
2 changed files with 2 additions and 1 deletions

View file

@ -69,7 +69,7 @@
<div id=footer>
<div id=link></div>
<div class=selectWrap>
<select id="langList"></select>
<select id="langList" title="Target language"></select>
</div>
</div>

View file

@ -52,6 +52,7 @@ setTitles();
function setTitles(){
document.getElementById('donate').title = browser.i18n.getMessage('donateWithPaypalLabel');
document.getElementById("setting").title = browser.i18n.getMessage('settingsLabel');
document.getElementById("langList").title = browser.i18n.getMessage('targetLangLabel');
}
function alphabeticallySort(a, b) {