]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1121806: show_bug does not display in IE9
authorAlbert Ting <altlist@gmail.com>
Wed, 21 Jan 2015 18:50:07 +0000 (18:50 +0000)
committerDavid Lawrence <dkl@mozilla.com>
Wed, 21 Jan 2015 18:50:07 +0000 (18:50 +0000)
r=dylan,a=justdave

js/bug.js

index f0bf68a30283675d40e52714c9659153eae87d52..af8255c90290484d87286a44c23cb0818936a3fc 100644 (file)
--- 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)
-        },
+        }
     };
 })();