From: Albert Ting Date: Wed, 21 Jan 2015 18:50:07 +0000 (+0000) Subject: Bug 1121806: show_bug does not display in IE9 X-Git-Tag: release-5.1.1~387 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=367d9c2f6efd2cc53b773f0c1cc9e19a8d82c5be;p=thirdparty%2Fbugzilla.git Bug 1121806: show_bug does not display in IE9 r=dylan,a=justdave --- diff --git a/js/bug.js b/js/bug.js index f0bf68a302..af8255c902 100644 --- a/js/bug.js +++ b/js/bug.js @@ -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) - }, + } }; })();