summaryrefslogtreecommitdiffstats
path: root/install/ui/widget.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui/widget.js')
-rw-r--r--install/ui/widget.js15
1 files changed, 10 insertions, 5 deletions
diff --git a/install/ui/widget.js b/install/ui/widget.js
index 576eef77b..138526fb3 100644
--- a/install/ui/widget.js
+++ b/install/ui/widget.js
@@ -1292,18 +1292,23 @@ IPA.deleter_dialog = function (spec) {
};
that.create = function() {
+
+ $('<p/>', {
+ 'text': IPA.messages.search.delete_confirm
+ }).appendTo(that.container);
+
+ var div = $('<div/>', {
+ style: 'overflow:auto; max-height: 100px'
+ }).appendTo(that.container);
+
var ul = $('<ul/>');
- ul.appendTo(that.container);
+ ul.appendTo(div);
for (var i=0; i<that.values.length; i++) {
$('<li/>',{
'text': that.values[i]
}).appendTo(ul);
}
-
- $('<p/>', {
- 'text': IPA.messages.search.delete_confirm
- }).appendTo(that.container);
};
that.open = function(container) {