aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rhbzpage.js
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2010-09-19 00:34:48 +0200
committerMatěj Cepl <mcepl@redhat.com>2010-09-19 00:34:48 +0200
commitc2a09508ae88149e615bd8f393858dd927f491cf (patch)
treea7be1ef25ebb4266f63bd3fc4e07ec02a166b0b2 /lib/rhbzpage.js
parent88112016166ac10e7ed2848c9562bed211918748 (diff)
downloadbugzilla-triage-c2a09508ae88149e615bd8f393858dd927f491cf.tar.gz
Fix .split() method
Diffstat (limited to 'lib/rhbzpage.js')
-rw-r--r--lib/rhbzpage.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/rhbzpage.js b/lib/rhbzpage.js
index 11471f5..8dff5be 100644
--- a/lib/rhbzpage.js
+++ b/lib/rhbzpage.js
@@ -243,8 +243,6 @@ RHBugzillaPage.prototype.addAttachment = function addAttachment(data, callback)
msg.addParameter({
description: titleParsedAttachment,
filename: "parsed-backtrace.txt",
- // Isn't this weird ... base64 and text/plain??? FIXME
- // and XML-RPC and text/plain?
contenttype: "text/plain",
data: this.win.btoa(data),
nomail: true
@@ -334,7 +332,6 @@ RHBugzillaPage.prototype.pasteBacktraceInComments = function() {
}, this);
}
// Add "show BT" links
- console.log("status_whiteboard = " + this.doc.getElementById('status_whiteboard').value);
if (this.idContainsWord("status_whiteboard", 'btparsed')) {
var ourParsedAtts = this.attachments.filter(function (att) {
return (new RegExp(titleParsedAttachment).test(att[0]));