summaryrefslogtreecommitdiffstats
path: root/install/static/hbacsvcgroup.js
diff options
context:
space:
mode:
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 f57a3bae9..eef6d6969 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;