summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/ipa.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/ipa.js
parentd4a6f20e65d8ba526e346eb134bb9b467fcbabad (diff)
downloadfreeipa.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/ipa.js')
-rw-r--r--install/ui/src/freeipa/ipa.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/install/ui/src/freeipa/ipa.js b/install/ui/src/freeipa/ipa.js
index fc04c56e..b708ed00 100644
--- a/install/ui/src/freeipa/ipa.js
+++ b/install/ui/src/freeipa/ipa.js
@@ -1576,7 +1576,7 @@ IPA.dirty_dialog = function(spec) {
that.message = text.get(spec.message || '@i18n:dialogs.dirty_message');
/** @inheritDoc */
- that.create = function() {
+ that.create_content = function() {
that.container.append(that.message);
};
@@ -1680,7 +1680,7 @@ IPA.error_dialog = function(spec) {
};
/** @inheritDoc */
- that.create = function() {
+ that.create_content = function() {
if (that.error_thrown.url) {
$('<p/>', {
text: text.get('@i18n:errors.url', 'URL')+': '+that.error_thrown.url
@@ -2013,7 +2013,7 @@ IPA.unauthorized_dialog = function(spec) {
that.denied = "Sorry you are not allowed to access this service.";
/** @inheritDoc */
- that.create = function() {
+ that.create_content = function() {
that.session_expired_form();
that.create_reset_form();