diff options
author | Matěj Cepl <mcepl@redhat.com> | 2010-06-11 21:03:36 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2010-06-11 21:03:36 +0200 |
commit | 60961904968ee23a474b85653f9e397d63fc6b7f (patch) | |
tree | 59f443589fb024fc3661f9d6aaa43a5308218fd4 /lib/puvodni/mozillabzpage.js | |
parent | 707982c8d28f29f6e5a16c3044874dc29ddb2738 (diff) | |
download | bugzilla-triage-60961904968ee23a474b85653f9e397d63fc6b7f.tar.gz |
Trying to make the simplest possible inherited objects.
Diffstat (limited to 'lib/puvodni/mozillabzpage.js')
-rw-r--r-- | lib/puvodni/mozillabzpage.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/puvodni/mozillabzpage.js b/lib/puvodni/mozillabzpage.js new file mode 100644 index 0000000..7efaf16 --- /dev/null +++ b/lib/puvodni/mozillabzpage.js @@ -0,0 +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, config) { + BZPage.call(this, doc, config) +}; + +MozillaBugzilla.prototype = utilMod.heir(BZPage); +MozillaBugzilla.prototype.constructor = MozillaBugzilla; |