aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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");
}
});
}