From 33df5f4a8b7846ff1da6550fa7e10735acfa5746 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Fri, 1 Jan 2010 14:30:04 +0100 Subject: Removing one useless that --- bugzillaBugTriage.js | 8 ++++---- 1 file 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"); } }); } -- cgit