mirror of
https://github.com/zotero/zotero.git
synced 2026-09-24 00:51:37 +00:00
Add tooltip to Zotero toolbar button
This commit is contained in:
parent
5bfc1e4199
commit
cefab23888
1 changed files with 11 additions and 0 deletions
|
|
@ -97,6 +97,17 @@ var ZoteroOverlay = new function()
|
|||
if (Zotero && Zotero.initialized){
|
||||
document.getElementById('appcontent').addEventListener('mousemove', Zotero.ProgressWindowSet.updateTimers, false);
|
||||
if (icon) {
|
||||
// TODO: move to strings
|
||||
let str = 'Zotero';
|
||||
let key = Zotero.Keys.getKeyForCommand('openZotero');
|
||||
if (key) {
|
||||
str += ' ('
|
||||
+ (Zotero.isMac ? '⇧⌘' : Zotero.getString('general.keys.ctrlShift'))
|
||||
+ key
|
||||
+ ')';
|
||||
}
|
||||
icon.setAttribute('tooltiptext', str);
|
||||
|
||||
if (iconPref == 1) {
|
||||
icon.setAttribute('compact', true);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue