aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rhbzpage.js
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2010-06-08 18:41:08 +0200
committerMatěj Cepl <mcepl@redhat.com>2010-06-08 18:41:08 +0200
commit7e426ac5faeea1b06de1ae2a024feaddb7f00531 (patch)
treef0e613f4a50c87efa7fa37c5bd284e1e6b9ee458 /lib/rhbzpage.js
parent94fe9a684db8182110109b6d3a8ef1bad1075a6b (diff)
downloadbugzilla-triage-7e426ac5faeea1b06de1ae2a024feaddb7f00531.tar.gz
First almost working version of main.js
Diffstat (limited to 'lib/rhbzpage.js')
-rw-r--r--lib/rhbzpage.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rhbzpage.js b/lib/rhbzpage.js
index 3aefaee..2370e72 100644
--- a/lib/rhbzpage.js
+++ b/lib/rhbzpage.js
@@ -15,7 +15,7 @@ var clip = require("clipboard");
// ====================================================================================
// RHBugzillaPage object
-exports.RHBugzillaPage = function RHBugzillaPage(doc) {
+exports.RHBugzillaPage = function RHBugzillaPage(doc, config) {
// For identification of graphics card
const manuChipStrs = [ [ "ATI Radeon", "ATI", "1002" ],
[ "ATI Mobility Radeon", "ATI", "1002" ],
@@ -57,7 +57,7 @@ exports.RHBugzillaPage = function RHBugzillaPage(doc) {
}
// inheritance ... call superobject's constructor
- BZPage.call(this,doc);
+ BZPage.call(this,doc, config);
let that = this;
this.reqCounter = 0;