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/associate.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/associate.js')
-rw-r--r-- | install/static/associate.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/static/associate.js b/install/static/associate.js index a25144ef..be9ee582 100644 --- a/install/static/associate.js +++ b/install/static/associate.js @@ -264,7 +264,7 @@ function ipa_association_widget(spec) { $('<input/>', { 'type': 'button', 'name': 'remove', - 'value': IPA.messages.button.delete + 'value': IPA.messages.button.remove }).appendTo(buttons); $('<input/>', { |