diff options
Diffstat (limited to 'data/mozillabzpage.js')
-rw-r--r-- | data/mozillabzpage.js | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/data/mozillabzpage.js b/data/mozillabzpage.js new file mode 100644 index 0000000..31f6332 --- /dev/null +++ b/data/mozillabzpage.js @@ -0,0 +1,19 @@ +// 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;
\ No newline at end of file |