summaryrefslogtreecommitdiffstats
path: root/install/static/hbacsvc.js
diff options
context:
space:
mode:
authorAdam Young <ayoung@redhat.com>2010-11-12 20:51:15 -0500
committerEndi Sukma Dewata <edewata@redhat.com>2010-11-14 01:53:52 -0500
commit59a0c17c54b2136946a43b012380f926d9d9e7f3 (patch)
tree0d290cbcc650a79c2f8f5b20da3d02bc94bc7e4c /install/static/hbacsvc.js
parent828f87e4a6996c0509e7ea65fd6d090bc6ee90b8 (diff)
downloadfreeipa.git-59a0c17c54b2136946a43b012380f926d9d9e7f3.tar.gz
freeipa.git-59a0c17c54b2136946a43b012380f926d9d9e7f3.tar.xz
freeipa.git-59a0c17c54b2136946a43b012380f926d9d9e7f3.zip
super to superior
Diffstat (limited to 'install/static/hbacsvc.js')
-rwxr-xr-xinstall/static/hbacsvc.js26
1 files changed, 13 insertions, 13 deletions
diff --git a/install/static/hbacsvc.js b/install/static/hbacsvc.js
index 0d704a0a..1c795234 100755
--- a/install/static/hbacsvc.js
+++ b/install/static/hbacsvc.js
@@ -26,7 +26,7 @@ function ipa_hbacsvc() {
'name': 'hbacsvc'
});
- that.super_init = that.super('init');
+ that.superior_init = that.superior('init');
that.init = function() {
@@ -49,7 +49,7 @@ function ipa_hbacsvc() {
});
that.add_facet(facet);
- that.super_init();
+ that.superior_init();
};
return that;
@@ -63,11 +63,11 @@ function ipa_hbacsvc_add_dialog(spec) {
var that = ipa_add_dialog(spec);
- that.super_init = that.super('init');
+ that.superior_init = that.superior('init');
that.init = function() {
- this.super_init();
+ this.superior_init();
this.add_field(ipa_text_widget({name:'cn', label:'Name'}));
this.add_field(ipa_text_widget({name:'description', label:'Description'}));
@@ -82,9 +82,9 @@ function ipa_hbacsvc_search_facet(spec) {
var that = ipa_search_facet(spec);
- that.super_init = that.super('init');
- that.super_create = that.super('create');
- that.super_setup = that.super('setup');
+ that.superior_init = that.superior('init');
+ that.superior_create = that.superior('create');
+ that.superior_setup = that.superior('setup');
that.init = function() {
@@ -97,7 +97,7 @@ function ipa_hbacsvc_search_facet(spec) {
setup: ipa_hbacsvc_quick_links
});
- that.super_init();
+ that.superior_init();
};
that.create = function(container) {
@@ -133,7 +133,7 @@ function ipa_hbacsvc_search_facet(spec) {
container.append('<br/><br/>');
- that.super_create(container);
+ that.superior_create(container);
};
return that;
@@ -170,9 +170,9 @@ function ipa_hbacsvc_details_facet(spec) {
var that = ipa_details_facet(spec);
- that.super_init = that.super('init');
- that.super_create = that.super('create');
- that.super_setup = that.super('setup');
+ that.superior_init = that.superior('init');
+ that.superior_create = that.superior('create');
+ that.superior_setup = that.superior('setup');
that.init = function() {
@@ -184,7 +184,7 @@ function ipa_hbacsvc_details_facet(spec) {
section.create_field({ 'name': 'cn', 'label': 'Name' });
section.create_field({ 'name': 'description', 'label': 'Description' });
- that.super_init();
+ that.superior_init();
};
return that;