diff options
Diffstat (limited to 'install')
-rw-r--r-- | install/ui/test/data/i18n_messages.json | 2 | ||||
-rw-r--r-- | install/ui/test/data/ipa_init.json | 2 | ||||
-rw-r--r-- | install/ui/test/data/json_metadata.json | 2 | ||||
-rw-r--r-- | install/ui/widget.js | 15 |
4 files changed, 13 insertions, 8 deletions
diff --git a/install/ui/test/data/i18n_messages.json b/install/ui/test/data/i18n_messages.json index 6dfb1c645..aba903348 100644 --- a/install/ui/test/data/i18n_messages.json +++ b/install/ui/test/data/i18n_messages.json @@ -27,7 +27,7 @@ "header": "Logged In As" }, "search": { - "delete_confirm": "Do you really want to delete the selected entries?", + "delete_confirm": "Are you sure you want to delete selected entries?", "quick_links": "Quick Links", "select_all": "Select All", "unselect_all": "Unselect All" diff --git a/install/ui/test/data/ipa_init.json b/install/ui/test/data/ipa_init.json index e0e6053c4..73ee8dc95 100644 --- a/install/ui/test/data/ipa_init.json +++ b/install/ui/test/data/ipa_init.json @@ -7730,7 +7730,7 @@ "header": "Logged In As" }, "search": { - "delete_confirm": "Do you really want to delete the selected entries?", + "delete_confirm": "Are you sure you want to delete selected entries?", "quick_links": "Quick Links", "select_all": "Select All", "unselect_all": "Unselect All" diff --git a/install/ui/test/data/json_metadata.json b/install/ui/test/data/json_metadata.json index 222a8b65c..6aa025788 100644 --- a/install/ui/test/data/json_metadata.json +++ b/install/ui/test/data/json_metadata.json @@ -27,7 +27,7 @@ "header": "Logged In As" }, "search": { - "delete_confirm": "Do you really want to delete the selected entries?", + "delete_confirm": "Are you sure you want to delete selected entries?", "quick_links": "Quick Links", "select_all": "Select All", "unselect_all": "Unselect All" 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) { |