summaryrefslogtreecommitdiffstats
path: root/install/static/widget.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/widget.js
parent828f87e4a6996c0509e7ea65fd6d090bc6ee90b8 (diff)
downloadfreeipa-59a0c17c54b2136946a43b012380f926d9d9e7f3.tar.gz
freeipa-59a0c17c54b2136946a43b012380f926d9d9e7f3.tar.xz
freeipa-59a0c17c54b2136946a43b012380f926d9d9e7f3.zip
super to superior
Diffstat (limited to 'install/static/widget.js')
-rwxr-xr-xinstall/static/widget.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/install/static/widget.js b/install/static/widget.js
index 281370caa..741195504 100755
--- a/install/static/widget.js
+++ b/install/static/widget.js
@@ -39,7 +39,7 @@ function ipa_widget(spec) {
that.save = spec.save || save;
that.clear = spec.clear || clear;
- that.super = function(name) {
+ that.superior = function(name) {
var method = that[name];
return function () {
return method.apply(that, arguments);
@@ -570,7 +570,7 @@ function ipa_dialog(spec) {
that.fields = [];
that.fields_by_name = {};
- that.super = function(name) {
+ that.superior = function(name) {
var method = that[name];
return function () {
return method.apply(that, arguments);
@@ -696,7 +696,7 @@ function ipa_adder_dialog(spec) {
that.width = spec.width || 600;
- that.super_open = that.super('open');
+ that.superior_open = that.superior('open');
that.create = function() {
@@ -785,7 +785,7 @@ function ipa_adder_dialog(spec) {
'Cancel': that.close
};
- that.super_open(container);
+ that.superior_open(container);
};
that.get_filter = function() {
@@ -841,7 +841,7 @@ function ipa_deleter_dialog(spec) {
that.title = spec.title || IPA.messages.button.remove;
that.remove = spec.remove;
- that.super_open = that.super('open');
+ that.superior_open = that.superior('open');
that.values = spec.values || [];
@@ -874,7 +874,7 @@ function ipa_deleter_dialog(spec) {
'Cancel': that.close
};
- that.super_open(container);
+ that.superior_open(container);
};
return that;