Index: chrome/ext/common.js |
=================================================================== |
--- a/chrome/ext/common.js |
+++ b/chrome/ext/common.js |
@@ -112,4 +112,8 @@ |
ext.backgroundPage.sendMessage = chrome.extension.sendMessage; |
else |
ext.backgroundPage.sendMessage = chrome.extension.sendRequest; |
+ |
+ // Chrome on Linux, not fully support chrome.notifications ( https://code.google.com/p/chromium/issues/detail?id=291485 ) |
Thomas Greiner
2014/02/18 16:44:25
Grammar nit: Chrome on Linux does not fully suppor
saroyanm
2014/02/18 17:53:48
oops.
|
+ if ("notifications" in chrome && navigator.platform.indexOf("Linux") == -1) |
+ ext.notifications = chrome.notifications; |
})(); |