diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-04-28 00:39:52 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-04-28 00:46:45 +0200 |
commit | 4964705f6918eda4cf4c310d261d95242bd2f0ad (patch) | |
tree | 335ea177b9e437ce5cf17449b56efec0d4f75487 /data/lib/util.js | |
parent | bc4c8cfcc7bb9814a0a4ce73d402e37fa7c0eedd (diff) | |
download | bugzilla-triage-4964705f6918eda4cf4c310d261d95242bd2f0ad.tar.gz |
Use self.on and self.postMessage instead of global on and postMessage.
The reason is https://bugzilla.mozilla.org/show_bug.cgi?id=635748 and
effort to save the world from global variables in content scripts.
Diffstat (limited to 'data/lib/util.js')
-rw-r--r-- | data/lib/util.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/lib/util.js b/data/lib/util.js index 1bdbcde..0e3dac4 100644 --- a/data/lib/util.js +++ b/data/lib/util.js @@ -329,7 +329,7 @@ function removeDuplicates (arr) { // ============================================ /** * object to pack messaging. Use as in - postMessage(new Message("GetPassword", { + self.postMessage(new Message("GetPassword", { login: login, hostname: location.hostname })); @@ -340,7 +340,7 @@ function Message(cmd, data) { } function log(msg) { - postMessage(new Message("LogMessage", msg)); + self.postMessage(new Message("LogMessage", msg)); } var NotLoggedinException = function NotLoggedinException (message) { |