From 2f3442be4ae44df58670f62748a0e4ecde9dda12 Mon Sep 17 00:00:00 2001 From: Kerrick Long Date: Fri, 15 Jul 2011 00:45:00 -0500 Subject: [PATCH] clear the popup --- js/common.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/common.js b/js/common.js index a5c80ab..2987d7e 100644 --- a/js/common.js +++ b/js/common.js @@ -150,6 +150,7 @@ BrowserAction.prototype.setBadgeDefaults = function (tabId) { chrome.browserAction.setBadgeText({'text': '?', 'tabId': tabId}); chrome.browserAction.setTitle({'title': 'Refresh the page to load data.', 'tabId': tabId}); chrome.browserAction.setBadgeBackgroundColor({'color': [192, 192, 192, 255], 'tabId': tabId}); + chrome.browserAction.setPopup({popup: '', tabId: tabId}); return true; };