diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2013-10-18 12:14:25 +0200 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2014-01-21 12:04:02 +0100 |
commit | 23c042775c0b6d918e7f05229a834622382e66fb (patch) | |
tree | c87de1fbe11ff84a99f33f527245e6bac0f51164 /install/ui/src/freeipa/host.js | |
parent | d4a6f20e65d8ba526e346eb134bb9b467fcbabad (diff) | |
download | freeipa.git-23c042775c0b6d918e7f05229a834622382e66fb.tar.gz freeipa.git-23c042775c0b6d918e7f05229a834622382e66fb.tar.xz freeipa.git-23c042775c0b6d918e7f05229a834622382e66fb.zip |
RCUE dialog implementation
https://fedorahosted.org/freeipa/ticket/3904
Diffstat (limited to 'install/ui/src/freeipa/host.js')
-rw-r--r-- | install/ui/src/freeipa/host.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/install/ui/src/freeipa/host.js b/install/ui/src/freeipa/host.js index ef9687fa..1c7528ba 100644 --- a/install/ui/src/freeipa/host.js +++ b/install/ui/src/freeipa/host.js @@ -464,8 +464,8 @@ IPA.host_adder_dialog = function(spec) { var that = IPA.entity_adder_dialog(spec); - that.create = function() { - that.entity_adder_dialog_create(); + that.create_content = function() { + that.entity_adder_dialog_create_content(); that.container.addClass('host-adder-dialog'); }; @@ -480,9 +480,9 @@ IPA.host_deleter_dialog = function(spec) { var that = IPA.search_deleter_dialog(spec); - that.create = function() { + that.create_content = function() { - that.deleter_dialog_create(); + that.deleter_dialog_create_content(); var metadata = IPA.get_command_option('host_del', 'updatedns'); @@ -647,7 +647,7 @@ IPA.host_unprovision_dialog = function(spec) { that.title = that.title.replace('${entity}', that.entity.metadata.label_singular); - that.create = function() { + that.create_content = function() { that.container.append(text.get('@i18n:objects.host.unprovision_confirmation')); }; |