From bd264fda050931db079d089194a0d26c22c345f9 Mon Sep 17 00:00:00 2001 From: gorhill Date: Thu, 4 Sep 2014 11:57:15 -0400 Subject: [PATCH] this also needed to fix #208 --- js/async.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/js/async.js b/js/async.js index a8a9c57a1..70dd88253 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);