blob: 9c82570d40f5375869ea724119ed13a9d7708d38 (
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;
|