diff options
author | Adam Young <ayoung@redhat.com> | 2011-01-28 13:06:34 -0500 |
---|---|---|
committer | Endi S. Dewata <edewata@redhat.com> | 2011-01-28 14:57:06 -0500 |
commit | 3625a1e88afd26e3694d33f3a491824ba0d1f9e3 (patch) | |
tree | 0ba206e017aef8b2e47b7133d03f3ce931d5052a /install/ui/entity.js | |
parent | b96138ba56d33fb3b84d992a731d797c2c8492be (diff) | |
download | freeipa-3625a1e88afd26e3694d33f3a491824ba0d1f9e3.tar.gz freeipa-3625a1e88afd26e3694d33f3a491824ba0d1f9e3.tar.xz freeipa-3625a1e88afd26e3694d33f3a491824ba0d1f9e3.zip |
services list
Declaritive Service definition
Fixed a problem with multiple calls to create breaking the link between the select box and the text box
swapped the select and the text
https://fedorahosted.org/freeipa/ticket/442
Diffstat (limited to 'install/ui/entity.js')
-rw-r--r-- | install/ui/entity.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/install/ui/entity.js b/install/ui/entity.js index 69dd444f8..ec4a2adc1 100644 --- a/install/ui/entity.js +++ b/install/ui/entity.js @@ -111,6 +111,10 @@ IPA.entity = function (spec) { }; that.add_dialog = function(dialog) { + return that.dialog(dialog); + } + + that.dialog = function(dialog) { dialog.entity_name = that.name; that.dialogs.push(dialog); that.dialogs_by_name[dialog.name] = dialog; |