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



                                                     
                                    
                                      



                                                                               
                                                              
                                   



                                                        
 
                                                                         
                                         
// 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");
var BZPage = require("bzpage").BZPage;

// ============================================================================
// 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;