aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rhbzpage.js
diff options
context:
space:
mode:
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
});
}
};