diff options
author | Matěj Cepl <mcepl@redhat.com> | 2010-05-31 19:17:19 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2010-05-31 19:17:19 +0200 |
commit | 475c2df048fa5c42ba913ceeba3e6201938031f7 (patch) | |
tree | 5a77c7f6c5bff188ce96020d6186fcb2f07696e5 /lib/mozillabzpage.js | |
parent | 2447e31a804eb7d7fe5ef01b974cba3b615e0594 (diff) | |
download | bugzilla-triage-475c2df048fa5c42ba913ceeba3e6201938031f7.tar.gz |
rewrite util.js to be more compliant with SDK usage.
Diffstat (limited to 'lib/mozillabzpage.js')
-rw-r--r-- | lib/mozillabzpage.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/mozillabzpage.js b/lib/mozillabzpage.js index 5a864f9..6eaa869 100644 --- a/lib/mozillabzpage.js +++ b/lib/mozillabzpage.js @@ -1,13 +1,14 @@ // Released under the MIT/X11 license // http://www.opensource.org/licenses/mit-license.php "use strict"; +var utilMod = require("util"); -// ==================================================================================== +// ============================================================================ // MozillaBugzilla object exports.MozillaBugzilla = function MozillaBugzilla (doc) { BZPage.call(this, doc) }; -MozillaBugzilla.prototype = hlpr.heir(BZPage); +MozillaBugzilla.prototype = utilMod.heir(BZPage); MozillaBugzilla.prototype.constructor = MozillaBugzilla; |