diff options
Diffstat (limited to 'lib/rhbzpage.js')
-rw-r--r-- | lib/rhbzpage.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/rhbzpage.js b/lib/rhbzpage.js index da3bf92..6127c33 100644 --- a/lib/rhbzpage.js +++ b/lib/rhbzpage.js @@ -29,7 +29,12 @@ var RHBugzillaPage = function RHBugzillaPage(doc, config) { console.log("Now we are outside!"); }; // END OF RHBugzillaPage CONSTRUCTOR +RHBugzillaPage.prototype.toString = function toString () { + return ("[Object RHBugzillaPage]"); +}; + RHBugzillaPage.prototype = util.heir(BZPage.prototype); RHBugzillaPage.prototype.constructor = RHBugzillaPage; -exports.RHBugzillaPage = apiUtils.publicConstructor(RHBugzillaPage);
\ No newline at end of file +//exports.RHBugzillaPage = apiUtils.publicConstructor(RHBugzillaPage); +exports.RHBugzillaPage = RHBugzillaPage;
\ No newline at end of file |