/*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 simpleStorage = require("simple-storage"); // ==================================================================================== // BZPage's methods var BZPage = exports.BZPage = function BZPage(doc, config) { console.log("doc = " + doc.title); console.log("config = " + config); // initialize dynamic properties this.doc = doc; console.log("Now we are inside!"); }; BZPage.prototype.getBugId = function getBugId () { return util.getBugNo(this.doc.location.href); };