aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rhbzpage.js
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2010-07-19 11:35:27 +0200
committerMatěj Cepl <mcepl@redhat.com>2010-07-19 11:35:27 +0200
commitf61df257aeac1b55bc6fb4b4cd67fc13201fa9ac (patch)
tree162f17f02faf2861b6ea4b7f727c641a05384af3 /lib/rhbzpage.js
parentdfde7d9860de703ba0721059ff4b795fcad07340 (diff)
downloadbugzilla-triage-f61df257aeac1b55bc6fb4b4cd67fc13201fa9ac.tar.gz
Trying to make jslint happy.
Diffstat (limited to 'lib/rhbzpage.js')
-rw-r--r--lib/rhbzpage.js12
1 files changed, 3 insertions, 9 deletions
diff --git a/lib/rhbzpage.js b/lib/rhbzpage.js
index eceef2b..6782241 100644
--- a/lib/rhbzpage.js
+++ b/lib/rhbzpage.js
@@ -111,14 +111,8 @@ var RHBugzillaPage = function RHBugzillaPage(win, config) {
this.addCheckXorgLogLink();
// TODO Get compiz bugs as well
- var keys = "";
- for (var key in config) {
- keys += key + ", ";
- }
- console.log("keys = " + keys);
-
if (this.constantData.PCI_ID_Array &&
- (this.maintCCAddr == "xgl-maint@redhat.com")) {
+ (this.maintCCAddr === "xgl-maint@redhat.com")) {
// Add find chip magic button
var whiteboard_string = this.doc.getElementById("status_whiteboard").value;
if (!/card_/.test(whiteboard_string)) {
@@ -447,7 +441,7 @@ RHBugzillaPage.prototype.addCheckXorgLogLink = function addCheckXorgLogLink() {
that.analyzeXorgLog(row[1]);
}, false);
}, this);
- };
+ }
};
/**
@@ -648,7 +642,7 @@ RHBugzillaPage.prototype.queryUpstream = function() {
var queryUpstreamBugsURLArray = this.constantData.queryUpstreamBug;
var urlBase = util.filterByRegexp(queryUpstreamBugsURLArray, this.component);
tabs.open({
- url: urlBase + text,
+ url: urlBase + text
});
}
};