diff options
author | Adam Young <ayoung@redhat.com> | 2011-01-24 22:30:28 -0500 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2011-01-25 13:11:55 -0500 |
commit | 4fa04942dfa61f8ec7ca98cf3d02dd1f52a3ca9b (patch) | |
tree | 91af2979cbf96951393c3f4162fcf7b750ea72da | |
parent | 32c74fccef04042f0339508aa5fe1248a0e4a12f (diff) | |
download | freeipa-4fa04942dfa61f8ec7ca98cf3d02dd1f52a3ca9b.tar.gz freeipa-4fa04942dfa61f8ec7ca98cf3d02dd1f52a3ca9b.tar.xz freeipa-4fa04942dfa61f8ec7ca98cf3d02dd1f52a3ca9b.zip |
action buttons for dns
-rw-r--r-- | install/ui/policy.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install/ui/policy.js b/install/ui/policy.js index eeec44e3..208b7c9e 100644 --- a/install/ui/policy.js +++ b/install/ui/policy.js @@ -333,13 +333,13 @@ IPA.records_facet = function (spec){ "class":"action-controls"}).appendTo(action_panel_ul); - IPA.button({ + IPA.action_button({ 'label': IPA.messages.button.add, 'icon': 'ui-icon-plus', 'click': add_click }).appendTo(action_controls); - IPA.button({ + IPA.action_button({ 'label': IPA.messages.button.remove, 'icon': 'ui-icon-trash', 'click': function(){delete_records(records_table);} |