diff options
author | Matěj Cepl <mcepl@redhat.com> | 2010-01-01 14:30:04 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2010-01-01 14:30:04 +0100 |
commit | 33df5f4a8b7846ff1da6550fa7e10735acfa5746 (patch) | |
tree | 608948483920abaa6e1d62e46f481d832826087d /bugzillaBugTriage.js | |
parent | 3984d5d9da633979c8771fc815fe8fe8782d8163 (diff) | |
download | bugzilla-triage-33df5f4a8b7846ff1da6550fa7e10735acfa5746.tar.gz |
Removing one useless that
Diffstat (limited to 'bugzillaBugTriage.js')
-rw-r--r-- | bugzillaBugTriage.js | 8 |
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"); } }); } |