1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*jslint onevar: false, browser: true, evil: true, laxbreak: true, undef: true, nomen: true, eqeqeq: true, bitwise: true, maxerr: 1000, immed: false, white: false, plusplus: false, regexp: false, undef: false */
/*global jetpack */
// Released under the MIT/X11 license
// http://www.opensource.org/licenses/mit-license.php
"use strict";
var util = require("util");
var BZPage = require("bzpage").BZPage;
// ====================================================================================
// RHBugzillaPage object
var RHBugzillaPage = exports.RHBugzillaPage = function RHBugzillaPage(doc, config) {
// inheritance ... call superobject's constructor
BZPage.call(this, doc, config);
console.log("location = " + this.doc.location);
this.bugId = this.getBugId();
console.log("bug number = " + this.bugId);
console.log("Now we are outside!");
}; // END OF RHBugzillaPage CONSTRUCTOR
RHBugzillaPage.prototype = util.heir(BZPage);
RHBugzillaPage.prototype.constructor = RHBugzillaPage;
|