diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-04-28 00:39:52 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-06-05 14:46:50 +0200 |
commit | cb82da27fc37ebe74aa9678506e72eb1a7308ca3 (patch) | |
tree | 743209aab4c515fd62c57c7f7982347ff760dec6 /data/lib/bzpage.js | |
parent | 680ad8225d72703dcdc98a128c7dd4f408a3018b (diff) | |
download | bugzilla-triage-cb82da27fc37ebe74aa9678506e72eb1a7308ca3.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/bzpage.js')
-rw-r--r-- | data/lib/bzpage.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/lib/bzpage.js b/data/lib/bzpage.js index f99d60c..3a832ea 100644 --- a/data/lib/bzpage.js +++ b/data/lib/bzpage.js @@ -318,7 +318,7 @@ function setConfigurationButton () { document.getElementById("configurationButton").addEventListener( "click", function(evt) { - postMessage(new Message("ChangeJSONURL", null)); + self.postMessage(new Message("ChangeJSONURL", null)); evt.stopPropagation(); evt.preventDefault(); }, false); @@ -423,7 +423,7 @@ function startup() { checkComments(); - postMessage(new Message("GetInstalledPackages", { + self.postMessage(new Message("GetInstalledPackages", { location: window.location.href, login: getLogin() })); |