diff options
author | drebs <drebs@leap.se> | 2014-09-15 12:04:53 -0300 |
---|---|---|
committer | drebs <drebs@leap.se> | 2014-09-15 12:04:53 -0300 |
commit | 6bfef35987ec87292cdc561361f37bfc6754b421 (patch) | |
tree | 20a3f09d40ed1f8c380c3a62721656b801b1e9b2 /chrome/content/statusBar/statusBarOverlay.js | |
parent | c29e78d2caa6bd0477e92ebab38c62f5bc18c857 (diff) |
Remove status bar messages (#4871).
Diffstat (limited to 'chrome/content/statusBar/statusBarOverlay.js')
-rw-r--r-- | chrome/content/statusBar/statusBarOverlay.js | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/chrome/content/statusBar/statusBarOverlay.js b/chrome/content/statusBar/statusBarOverlay.js index c82b3f2..fbe91bb 100644 --- a/chrome/content/statusBar/statusBarOverlay.js +++ b/chrome/content/statusBar/statusBarOverlay.js @@ -33,15 +33,19 @@ var accountConfigured = getStringBundle( ****************************************************************************/ // run startUp() once when window loads -window.addEventListener("load", function(e) { - starUp(); +window.addEventListener("load", function(e) { + starUp(); }, false); +/** + * We don't want a message with the bitmask account status in the status bar + * for now (see https://leap.se/code/issues/4871). + */ // run updatePanel() periodically -window.setInterval( - function() { - updatePanel(); - }, 10000); // update every ten seconds +//window.setInterval( +// function() { +// updatePanel(); +// }, 10000); // update every ten seconds /***************************************************************************** @@ -49,7 +53,8 @@ window.setInterval( ****************************************************************************/ function starUp() { - updatePanel(); + // TODO: uncomment when we want messages in the status bar again. + //updatePanel(); if (!isBitmaskAccountConfigured()) { launchAccountWizard(); } else { |