From 3625a1e88afd26e3694d33f3a491824ba0d1f9e3 Mon Sep 17 00:00:00 2001 From: Adam Young Date: Fri, 28 Jan 2011 13:06:34 -0500 Subject: 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 --- install/ui/entity.js | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'install/ui/entity.js') diff --git a/install/ui/entity.js b/install/ui/entity.js index 69dd444f..ec4a2adc 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; -- cgit