diff options
author | Matěj Cepl <mcepl@redhat.com> | 2010-06-08 18:41:08 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2010-06-08 18:41:08 +0200 |
commit | 7e426ac5faeea1b06de1ae2a024feaddb7f00531 (patch) | |
tree | f0e613f4a50c87efa7fa37c5bd284e1e6b9ee458 /lib/mozillabzpage.js | |
parent | 94fe9a684db8182110109b6d3a8ef1bad1075a6b (diff) | |
download | bugzilla-triage-7e426ac5faeea1b06de1ae2a024feaddb7f00531.tar.gz |
First almost working version of main.js
Diffstat (limited to 'lib/mozillabzpage.js')
-rw-r--r-- | lib/mozillabzpage.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mozillabzpage.js b/lib/mozillabzpage.js index 6eaa869..7efaf16 100644 --- a/lib/mozillabzpage.js +++ b/lib/mozillabzpage.js @@ -6,8 +6,8 @@ var utilMod = require("util"); // ============================================================================ // MozillaBugzilla object -exports.MozillaBugzilla = function MozillaBugzilla (doc) { - BZPage.call(this, doc) +exports.MozillaBugzilla = function MozillaBugzilla (doc, config) { + BZPage.call(this, doc, config) }; MozillaBugzilla.prototype = utilMod.heir(BZPage); |