diff options
author | Albert Ting <altlist@gmail.com> | 2015-01-21 19:50:07 +0100 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2015-01-21 19:50:07 +0100 |
commit | 367d9c2f6efd2cc53b773f0c1cc9e19a8d82c5be (patch) | |
tree | 8718f6813ef416e3fda665e2265b7273f6b51b56 /js | |
parent | 88201447b7d3304b3c2247b662a666b6eda7909c (diff) | |
download | bugzilla-367d9c2f6efd2cc53b773f0c1cc9e19a8d82c5be.tar.gz bugzilla-367d9c2f6efd2cc53b773f0c1cc9e19a8d82c5be.tar.xz |
Bug 1121806: show_bug does not display in IE9
r=dylan,a=justdave
Diffstat (limited to 'js')
-rw-r--r-- | js/bug.js | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -203,14 +203,14 @@ function set_assign_to(use_qa_contact) { params: { Bugzilla_api_token: BUGZILLA.api_token, ids: bug_id - }, + } }); var callbacks = { failure: function(res) { if (console) console.log("failed to update last visited: " + res.responseText); - }, + } }; YAHOO.util.Connect.setDefaultPostHeader('application/json', true); @@ -224,7 +224,7 @@ function set_assign_to(use_qa_contact) { method: 'BugUserLastVisit.get', params: { Bugzilla_api_token: BUGZILLA.api_token - }, + } }); var callbacks = { success: function(res) { done(JSON.parse(res.responseText)) }, @@ -232,12 +232,12 @@ function set_assign_to(use_qa_contact) { if (console) console.log("failed to get last visited: " + res.responseText); - }, + } }; YAHOO.util.Connect.setDefaultPostHeader('application/json', true); YAHOO.util.Connect.asyncRequest('POST', 'jsonrpc.cgi', callbacks, args) - }, + } }; })(); |