diff options
Diffstat (limited to 'js')
-rw-r--r-- | js/async.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/js/async.js b/js/async.js index a8a9c57..70dd882 100644 --- a/js/async.js +++ b/js/async.js @@ -142,7 +142,10 @@ return asyncJobManager; if ( pageStore ) { pageStore.updateBadge(); } else { - chrome.browserAction.setIcon({ tabId: tabId, path: 'img/browsericons/icon19-off.png' }); + chrome.browserAction.setIcon({ + tabId: tabId, + path: { '19': 'img/browsericons/icon19-off.png', '38': 'img/browsericons/icon38-off.png' } + }); } }; this.asyncJobs.add('updateBadge-' + tabId, tabId, updateBadgeCallback, 250); |