diff options
author | Matěj Cepl <mcepl@redhat.com> | 2012-04-11 11:38:06 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2012-04-11 11:38:06 +0200 |
commit | 03a01c78c630251416a6e21ad797158d9d16081b (patch) | |
tree | cfdca481801771db29acda4c7d297bc9f1e0dc42 /data/lib/bzpage.js | |
parent | 3476e68c41e5a106a3f514c411ff93bfe0ad61a4 (diff) | |
download | bugzilla-triage-03a01c78c630251416a6e21ad797158d9d16081b.tar.gz |
Clean superfluous console.log calls and update HACKING
With debugging switched off the addons should generate nothing on the
console.
Diffstat (limited to 'data/lib/bzpage.js')
-rw-r--r-- | data/lib/bzpage.js | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/data/lib/bzpage.js b/data/lib/bzpage.js index e44f3f4..9d83e15 100644 --- a/data/lib/bzpage.js +++ b/data/lib/bzpage.js @@ -337,7 +337,7 @@ function setConfigurationButton () { * */ function completeInit() { - // FIXME: add flags, and priority or others bits. + // TODO: add flags, and priority or others bits. var things = { attachments: new AttachList(document), comments: new CommentList(document) @@ -358,13 +358,13 @@ function completeInit() { function startup() { // First, preflight check ... if we are not logged in, there // is nothing we can do. - console.log("startup: Starting!"); + myDebug("startup: Starting!"); var logoutLink = Array.some(document.links, function (x) { return x.search === "?logout=1" ; }); if (logoutLink) { if (document.getElementById("brElementPlace_location")) { - console.error("Hit multiple firing protection!") + console.error("Hit multiple firing protection!"); return null; // This should just finish whole content script without // doing any harm to anybody. } @@ -396,11 +396,6 @@ function startup() { extBugsHeadline.setAttribute("id", "external_bugs_headline"); } - // TODO Probably could be ignored ... used only once on line 973 of - // rhbzpage.js - // if (parseAbrtBacktraces && this.RE.Abrt.test(getSummary())) { - // title = document.getElementById("short_desc_nonedit_display").textContent; - // So, now we know we are logged in, so we can get to // the real work. setConfigurationButton(); |