summaryrefslogtreecommitdiffstats
path: root/install/static/hbacsvcgroup.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/hbacsvcgroup.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/hbacsvcgroup.js')
-rwxr-xr-xinstall/static/hbacsvcgroup.js26
1 files changed, 13 insertions, 13 deletions
diff --git a/install/static/hbacsvcgroup.js b/install/static/hbacsvcgroup.js
index f57a3bae..eef6d696 100755
--- a/install/static/hbacsvcgroup.js
+++ b/install/static/hbacsvcgroup.js
@@ -26,7 +26,7 @@ function ipa_hbacsvcgroup() {
'name': 'hbacsvcgroup'
});
- that.super_init = that.super('init');
+ that.superior_init = that.superior('init');
that.init = function() {
@@ -60,7 +60,7 @@ function ipa_hbacsvcgroup() {
});
that.add_facet(facet);
- that.super_init();
+ that.superior_init();
};
return that;
@@ -74,11 +74,11 @@ function ipa_hbacsvcgroup_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'}));
@@ -93,9 +93,9 @@ function ipa_hbacsvcgroup_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() {
@@ -108,7 +108,7 @@ function ipa_hbacsvcgroup_search_facet(spec) {
setup: ipa_hbacsvcgroup_quick_links
});
- that.super_init();
+ that.superior_init();
};
that.create = function(container) {
@@ -144,7 +144,7 @@ function ipa_hbacsvcgroup_search_facet(spec) {
container.append('<br/><br/>');
- that.super_create(container);
+ that.superior_create(container);
};
return that;
@@ -181,9 +181,9 @@ function ipa_hbacsvcgroup_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() {
@@ -195,7 +195,7 @@ function ipa_hbacsvcgroup_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;