aboutsummaryrefslogtreecommitdiffstats
path: root/data/lib/makeBacktraceAttachment.js
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2011-04-28 00:39:52 +0200
committerMatěj Cepl <mcepl@redhat.com>2011-06-05 14:46:50 +0200
commitcb82da27fc37ebe74aa9678506e72eb1a7308ca3 (patch)
tree743209aab4c515fd62c57c7f7982347ff760dec6 /data/lib/makeBacktraceAttachment.js
parent680ad8225d72703dcdc98a128c7dd4f408a3018b (diff)
downloadbugzilla-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/makeBacktraceAttachment.js')
-rw-r--r--data/lib/makeBacktraceAttachment.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/lib/makeBacktraceAttachment.js b/data/lib/makeBacktraceAttachment.js
index e938b11..a6b6ab0 100644
--- a/data/lib/makeBacktraceAttachment.js
+++ b/data/lib/makeBacktraceAttachment.js
@@ -78,7 +78,7 @@ function pasteBacktraceInComments(atts) {
* @return none
*/
function showAttachment(id) {
- postMessage(new Message("OpenURLinPanel",
+ self.postMessage(new Message("OpenURLinPanel",
"https://" + window.location.hostname + "/attachment.cgi?id=" + id));
}