summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/add.js
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2013-10-18 12:14:25 +0200
committerMartin Kosek <mkosek@redhat.com>2014-01-21 12:04:02 +0100
commit23c042775c0b6d918e7f05229a834622382e66fb (patch)
treec87de1fbe11ff84a99f33f527245e6bac0f51164 /install/ui/src/freeipa/add.js
parentd4a6f20e65d8ba526e346eb134bb9b467fcbabad (diff)
downloadfreeipa-23c042775c0b6d918e7f05229a834622382e66fb.tar.gz
freeipa-23c042775c0b6d918e7f05229a834622382e66fb.tar.xz
freeipa-23c042775c0b6d918e7f05229a834622382e66fb.zip
RCUE dialog implementation
https://fedorahosted.org/freeipa/ticket/3904
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;