diff options
Diffstat (limited to 'bugzillaBugTriage.js')
-rw-r--r-- | bugzillaBugTriage.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bugzillaBugTriage.js b/bugzillaBugTriage.js index 8ab3914..d3626e1 100644 --- a/bugzillaBugTriage.js +++ b/bugzillaBugTriage.js @@ -141,7 +141,7 @@ loadJSON = function(URL, cb_function) { } loadText(URL,function (text) { - var data = JSON.parse(req.responseText); + var data = JSON.parse(text); cb_function.apply(data,what); }); }; @@ -1591,7 +1591,7 @@ function BzPage(doc) { this.addTextToTextBox("comment",this.btSnippet); this.addTextToTextBox("cf_devel_whiteboard","btparsed"); } - }); + },this); } },this); } |