Index: safari/background.js |
=================================================================== |
--- a/safari/background.js |
+++ b/safari/background.js |
@@ -77,8 +77,7 @@ |
this._tab.activate(); |
}, |
sendMessage: sendMessage, |
- pageAction: { |
- // there are no page actions in safari, so we use toolbar items instead |
+ browserAction: { |
setIcon: function(path) |
{ |
safari.extension.toolbarItems[0].image = safari.extension.baseURI + path; |
@@ -87,10 +86,15 @@ |
{ |
safari.extension.toolbarItems[0].toolTip = title; |
}, |
+ setBadgeNumber: function(number) |
+ { |
+ safari.extension.toolbarItems[0].badge = (number === null) ? 0 : number; |
+ }, |
- // toolbar items in safari can"t get hidden |
+ // The following features aren't supported by Safari |
hide: function() {}, |
- show: function() {} |
+ show: function() {}, |
+ setBadgeBackgroundColor: function(color) {} |
} |
}; |