aboutsummaryrefslogblamecommitdiffstats
path: root/lib/mozillabzpage.js
blob: add0a3d8fbea1de6dab0ac8e95178d61fd12f028 (plain) (tree)
1
2
3
4
5
6
7
8
9







                                                                               
                                                              




                                                        

                                         
// Released under the MIT/X11 license
// http://www.opensource.org/licenses/mit-license.php
"use strict";
var utilMod = require("util");

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

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

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

exports.MozillaBugzilla = MozillaBugzilla;