summaryrefslogtreecommitdiffstats
path: root/install/ui/dialog.js
diff options
context:
space:
mode:
authorAdam Young <ayoung@redhat.com>2011-02-07 23:02:43 -0500
committerAdam Young <ayoung@redhat.com>2011-02-11 15:04:31 -0500
commit6f6d50f37f21db2a5591fa44c962eea04b82f596 (patch)
tree906b835cf90afc05b7ccfec53d2c4df34b12dccc /install/ui/dialog.js
parent3ac3130fc9daf853368947b268d9af4b8a67d247 (diff)
downloadfreeipa-6f6d50f37f21db2a5591fa44c962eea04b82f596.tar.gz
freeipa-6f6d50f37f21db2a5591fa44c962eea04b82f596.tar.xz
freeipa-6f6d50f37f21db2a5591fa44c962eea04b82f596.zip
target section without radio buttons ACI target section refactored into an array of widget-like objects. The radio buttons have been replaced by a select box. THe select is not visible on the details page.
Diffstat (limited to 'install/ui/dialog.js')
-rw-r--r--install/ui/dialog.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/install/ui/dialog.js b/install/ui/dialog.js
index b1f84a98b..f8eaf2121 100644
--- a/install/ui/dialog.js
+++ b/install/ui/dialog.js
@@ -234,6 +234,9 @@ IPA.dialog = function(spec) {
var field = that.fields[i];
field.reset();
}
+ for (var j=0; j<that.sections.length; j++) {
+ that.sections[j].reset();
+ }
};
that.dialog_init = that.init;