Index: lib/icon.js |
=================================================================== |
--- a/lib/icon.js |
+++ b/lib/icon.js |
@@ -93,31 +93,29 @@ |
* @param {Page} page The page to set the browser action icon for |
* @param {Boolean} whitelisted Whether the page has been whitelisted |
*/ |
-function updateIcon(page, whitelisted) |
+exports.updateIcon = function(page, whitelisted) |
{ |
page.browserAction.setIcon(getIconPath(whitelisted)); |
whitelistedState.set(page, whitelisted); |
-} |
-exports.updateIcon = updateIcon; |
+}; |
/** |
* Starts to animate the browser action icon to indicate a pending notifcation. |
* |
* @param {string} type The notification type (i.e: "information" or "critical") |
*/ |
-function startIconAnimation(type) |
+exports.startIconAnimation = function(type) |
{ |
notificationType = type; |
if (animationInterval == null) |
animationInterval = runAnimation(); |
-} |
-exports.startIconAnimation = startIconAnimation; |
+}; |
/** |
* Stops to animate the browser action icon. |
*/ |
-function stopIconAnimation() |
+exports.stopIconAnimation = function() |
{ |
if (animationInterval != null) |
{ |
@@ -126,5 +124,4 @@ |
} |
notificationType = null; |
-} |
-exports.stopIconAnimation = stopIconAnimation; |
+}; |