diff options
author | Einar Egilsson | 2007-10-05 21:10:42 +0000 |
---|---|---|
committer | Einar Egilsson | 2007-10-05 21:10:42 +0000 |
commit | d30ede45e7ff0624ca4a1bcc565c344a6df23ee2 (patch) | |
tree | db69cf7e65971d7764a9505afc2f36cb1ae6ac61 /chrome/content/overlay.js | |
parent | 44344acd49dbd1781825644deee839d7de132e00 (diff) |
Redirector 1.0.2.1
git-svn-id: http://einaregilsson.googlecode.com/svn/mozilla/redirector/trunk@94 119bf307-c92d-0410-89bd-8f53e6181181
Diffstat (limited to 'chrome/content/overlay.js')
-rw-r--r-- | chrome/content/overlay.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/content/overlay.js b/chrome/content/overlay.js index 7795372..b7bd560 100644 --- a/chrome/content/overlay.js +++ b/chrome/content/overlay.js @@ -160,11 +160,11 @@ var RedirectorOverlay = { var statusImg = $('redirector-statusbar-img'); if (RedirLib.getBoolPref('enabled')) { - statusImg.src = 'chrome://redirector/content/statusactive.png' + statusImg.src = 'chrome://redirector/content/statusactive.PNG' statusImg.setAttribute('tooltiptext', this.strings.getString('enabledTooltip')); Redirector.enabled = true; } else { - statusImg.src = 'chrome://redirector/content/statusinactive.png' + statusImg.src = 'chrome://redirector/content/statusinactive.PNG' statusImg.setAttribute('tooltiptext', this.strings.getString('disabledTooltip')); Redirector.enabled = false; } |