blob: 5a864f9a34955d983c7670e914a139e60458553f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Released under the MIT/X11 license
// http://www.opensource.org/licenses/mit-license.php
"use strict";
// ====================================================================================
// MozillaBugzilla object
exports.MozillaBugzilla = function MozillaBugzilla (doc) {
BZPage.call(this, doc)
};
MozillaBugzilla.prototype = hlpr.heir(BZPage);
MozillaBugzilla.prototype.constructor = MozillaBugzilla;
|