blob: 7efaf16199f8483b0369c86d95499bdafcb0be63 (
plain) (
tree)
|
|
// Released under the MIT/X11 license
// http://www.opensource.org/licenses/mit-license.php
"use strict";
var utilMod = require("util");
// ============================================================================
// MozillaBugzilla object
exports.MozillaBugzilla = function MozillaBugzilla (doc, config) {
BZPage.call(this, doc, config)
};
MozillaBugzilla.prototype = utilMod.heir(BZPage);
MozillaBugzilla.prototype.constructor = MozillaBugzilla;
|