diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2013-04-16 12:59:38 +0200 |
---|---|---|
committer | Petr Vobornik <pvoborni@redhat.com> | 2013-05-06 16:22:26 +0200 |
commit | e100ba7e2b14b74ed548ee0dd6ba1093b17dd795 (patch) | |
tree | 6b675d9643a74b717ecb70e0c642405818311472 /install/ui/src/freeipa/ipa.js | |
parent | 1221fca6628450c6cd3031b377c7426fa4b1b0ad (diff) | |
download | freeipa.git-e100ba7e2b14b74ed548ee0dd6ba1093b17dd795.tar.gz freeipa.git-e100ba7e2b14b74ed548ee0dd6ba1093b17dd795.tar.xz freeipa.git-e100ba7e2b14b74ed548ee0dd6ba1093b17dd795.zip |
Replace build logic in widget and field builder by new builder
https://fedorahosted.org/freeipa/ticket/3235
Diffstat (limited to 'install/ui/src/freeipa/ipa.js')
-rw-r--r-- | install/ui/src/freeipa/ipa.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/install/ui/src/freeipa/ipa.js b/install/ui/src/freeipa/ipa.js index 7598aee8..a9481615 100644 --- a/install/ui/src/freeipa/ipa.js +++ b/install/ui/src/freeipa/ipa.js @@ -1475,7 +1475,7 @@ IPA.unauthorized_dialog = function(spec) { }, { name: 'password', - type: 'password', + $type: 'password', label: text.get('@i18n:login.password', "Password") } ] @@ -1491,13 +1491,13 @@ IPA.unauthorized_dialog = function(spec) { }, { name: 'new_password', - type: 'password', + $type: 'password', required: true, label: text.get('@i18n:password.new_password)', "New Password") }, { name: 'verify_password', - type: 'password', + $type: 'password', required: true, label: text.get('@i18n:password.verify_password', "Verify Password"), validators: [IPA.same_password_validator({ |