summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/add.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui/src/freeipa/add.js')
-rw-r--r--install/ui/src/freeipa/add.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/install/ui/src/freeipa/add.js b/install/ui/src/freeipa/add.js
index 00d499da5..23eac54d6 100644
--- a/install/ui/src/freeipa/add.js
+++ b/install/ui/src/freeipa/add.js
@@ -232,8 +232,8 @@ IPA.entity_adder_dialog = function(spec) {
};
/** @inheritDoc */
- that.create = function() {
- that.dialog_create();
+ that.create_content = function() {
+ that.dialog_create_content();
var div = $('<div/>', {
}).appendTo(that.container);
@@ -251,7 +251,7 @@ IPA.entity_adder_dialog = function(spec) {
};
// methods that should be invoked by subclasses
- that.entity_adder_dialog_create = that.create;
+ that.entity_adder_dialog_create_content = that.create_content;
that.entity_adder_dialog_create_add_command = that.create_add_command;
that.entity_adder_dialog_get_success_message = that.get_success_message;