diff options
author | Adam Young <ayoung@redhat.com> | 2010-11-08 20:39:40 -0500 |
---|---|---|
committer | Endi Sukma Dewata <edewata@redhat.com> | 2010-11-09 02:14:23 -0500 |
commit | 1f9531bea203e7c4706ec5607fcb3c3111436373 (patch) | |
tree | 454012b65f8d39744da18b509ee92ca2bd4dc461 /install/static/policy.js | |
parent | cb739c10d04beaa1470e509b9236f33a16c83408 (diff) | |
download | freeipa.git-1f9531bea203e7c4706ec5607fcb3c3111436373.tar.gz freeipa.git-1f9531bea203e7c4706ec5607fcb3c3111436373.tar.xz freeipa.git-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/policy.js')
-rw-r--r-- | install/static/policy.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install/static/policy.js b/install/static/policy.js index 24333a5d..c5ca523a 100644 --- a/install/static/policy.js +++ b/install/static/policy.js @@ -179,7 +179,7 @@ function ipa_records_facet(spec){ var delete_dialog = $('<div/>', { - title: IPA.messages.button.delete + title: IPA.messages.button.remove }); var to_delete_table = $('<table class="search-table" >'+ @@ -302,7 +302,7 @@ function ipa_records_facet(spec){ }).appendTo(control_span); ipa_button({ - 'label': IPA.messages.button.delete, + 'label': IPA.messages.button.remove, 'icon': 'ui-icon-trash', 'click': function(){delete_records(records_table);} }).appendTo(control_span); |