summaryrefslogtreecommitdiffstats
path: root/install/static/search.js
diff options
context:
space:
mode:
authorAdam Young <ayoung@redhat.com>2010-11-08 20:39:40 -0500
committerEndi Sukma Dewata <edewata@redhat.com>2010-11-09 02:14:23 -0500
commit1f9531bea203e7c4706ec5607fcb3c3111436373 (patch)
tree454012b65f8d39744da18b509ee92ca2bd4dc461 /install/static/search.js
parentcb739c10d04beaa1470e509b9236f33a16c83408 (diff)
downloadfreeipa-1f9531bea203e7c4706ec5607fcb3c3111436373.tar.gz
freeipa-1f9531bea203e7c4706ec5607fcb3c3111436373.tar.xz
freeipa-1f9531bea203e7c4706ec5607fcb3c3111436373.zip
delete to remove THe keyword delete is reserved in Javascript Using it breaks the WebUI on Chrome. This fixes replaces the word with delete.
Diffstat (limited to 'install/static/search.js')
-rw-r--r--install/static/search.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/install/static/search.js b/install/static/search.js
index dafa7a553..1dfeda41e 100644
--- a/install/static/search.js
+++ b/install/static/search.js
@@ -144,7 +144,7 @@ function search_create(entity_name, columns, container) {
function delete_on_click_outer() {
var delete_list = [];
var delete_dialog = $('<div></div>', {
- title: IPA.messages.button.delete
+ title: IPA.messages.button.remove
});
function delete_on_click() {
@@ -213,7 +213,7 @@ function search_create(entity_name, columns, container) {
}).appendTo(search_filter);
ipa_button({
- 'label': IPA.messages.button.delete,
+ 'label': IPA.messages.button.remove,
'icon': 'ui-icon-trash',
'click': delete_on_click_outer
}).appendTo(search_filter);