blob: 69e29267429f50fed4ff3b7baebfd162cce7f862 (
plain) (
tree)
|
|
// 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;
|