aboutsummaryrefslogtreecommitdiffstats
path: root/lib/mozillabzpage.js
blob: 69e29267429f50fed4ff3b7baebfd162cce7f862 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Released under the MIT/X11 license
// http://www.opensource.org/licenses/mit-license.php
"use strict";
var utilMod = require("util");
var apiUtils = require("api-utils");

// ============================================================================
// MozillaBugzilla object

var MozillaBugzilla = function MozillaBugzilla (doc, config) {
    BZPage.call(this, doc, config);
};

MozillaBugzilla.prototype = utilMod.heir(BZPage);
MozillaBugzilla.prototype.constructor = MozillaBugzilla;

// exports.MozillaBugzilla = apiUtils.publicConstructor(MozillaBugzilla);
exports.MozillaBugzilla = MozillaBugzilla;