aboutsummaryrefslogtreecommitdiffstats
path: root/bugzillaBugTriage.js
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2010-01-01 14:30:04 +0100
committerMatěj Cepl <mcepl@redhat.com>2010-01-01 14:30:04 +0100
commit33df5f4a8b7846ff1da6550fa7e10735acfa5746 (patch)
tree608948483920abaa6e1d62e46f481d832826087d /bugzillaBugTriage.js
parent3984d5d9da633979c8771fc815fe8fe8782d8163 (diff)
downloadbugzilla-triage-33df5f4a8b7846ff1da6550fa7e10735acfa5746.tar.gz
Removing one useless that
Diffstat (limited to 'bugzillaBugTriage.js')
-rw-r--r--bugzillaBugTriage.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/bugzillaBugTriage.js b/bugzillaBugTriage.js
index 39ec625..63b17ae 100644
--- a/bugzillaBugTriage.js
+++ b/bugzillaBugTriage.js
@@ -1570,10 +1570,10 @@ function BzPage(doc) {
console.log("btSnippet = " + this.btSnippet);
if (!this.btSnippet) {
var btRaw = $.get(attURL,function (ret) {
- that.btSnippet = that.parseBacktrace(ret);
- if (that.btSnippet) {
- that.addTextToTextBox("comment",that.btSnippet);
- that.addTextToTextBox("cf_devel_whiteboard","btparsed");
+ this.btSnippet = this.parseBacktrace(ret);
+ if (this.btSnippet) {
+ this.addTextToTextBox("comment",this.btSnippet);
+ this.addTextToTextBox("cf_devel_whiteboard","btparsed");
}
});
}