aboutsummaryrefslogtreecommitdiffstats
path: root/lib/puvodni/mozillabzpage.js
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2010-06-11 21:03:36 +0200
committerMatěj Cepl <mcepl@redhat.com>2010-06-11 21:03:36 +0200
commit60961904968ee23a474b85653f9e397d63fc6b7f (patch)
tree59f443589fb024fc3661f9d6aaa43a5308218fd4 /lib/puvodni/mozillabzpage.js
parent707982c8d28f29f6e5a16c3044874dc29ddb2738 (diff)
downloadbugzilla-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.js14
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;