 Issue 6098518317989888:
  Fix: Notification popup is broken  (Closed)
    
  
    Issue 6098518317989888:
  Fix: Notification popup is broken  (Closed) 
  | Index: chrome/ext/background.js | 
| =================================================================== | 
| --- a/chrome/ext/background.js | 
| +++ b/chrome/ext/background.js | 
| @@ -579,4 +579,7 @@ | 
| }; | 
| ext.onMessage = new BackgroundMessageEventTarget(); | 
| + // Chrome on Linux does not fully support chrome.notifications yet ( https://code.google.com/p/chromium/issues/detail?id=291485 ) | 
| + if ("notifications" in chrome && navigator.platform.indexOf("Linux") == -1) | 
| + ext.browserNotifications = chrome.notifications; | 
| })(); |