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/queries.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/queries.js')
-rw-r--r-- | data/lib/queries.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/data/lib/queries.js b/data/lib/queries.js index 7f935c8..4bf959a 100644 --- a/data/lib/queries.js +++ b/data/lib/queries.js @@ -51,7 +51,7 @@ function queryInNewTab(text, component, product, equivComps) { + "&field0-0-2=status_whiteboard&type0-0-2=substring&value0-0-2=" + text; urlStr += searchText; - postMessage(new Message("OpenURLinTab", urlStr)); // utils.js is always avaiulable + self.postMessage(new Message("OpenURLinTab", urlStr)); // utils.js is always avaiulable } } @@ -62,7 +62,7 @@ function queryInNewTab(text, component, product, equivComps) { function queryForSelection() { var text = getSelection(); if (!text) { - postMessage(new Message("GetClipboard", "queryLocal")); + self.postMessage(new Message("GetClipboard", "queryLocal")); } else { if (equivalentComponents) { queryInNewTab(text, getComponent(), getProduct(), equivalentComponents); @@ -87,7 +87,7 @@ function queryUpstreamCallback(text, queryUpBug) { text = text.replace("$$$", getComponent()); } text = encodeURIComponent(text).replace("%20","+"); - postMessage(new Message("OpenURLinTab", urlBase + text)); + self.postMessage(new Message("OpenURLinTab", urlBase + text)); } /** @@ -102,7 +102,7 @@ function queryUpstream(qUpBug) { } var text = getSelection(); if (!text) { - postMessage(new Message("GetClipboard", "queryUpstream")); + self.postMessage(new Message("GetClipboard", "queryUpstream")); } else { queryUpstreamCallback(text, qUpBug); |