diff options
author | Adam Young <ayoung@redhat.com> | 2011-01-24 22:00:38 -0500 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2011-01-25 13:11:37 -0500 |
commit | 485e4a097ff8c96d3b36cb9c6a53b782f6b8e0cf (patch) | |
tree | 2151dda824b8f4cf75ba0897399a3951bd779df1 /install | |
parent | 70a9e04f044c5a2d7ae45029124d9a944a0a722b (diff) | |
download | freeipa-485e4a097ff8c96d3b36cb9c6a53b782f6b8e0cf.tar.gz freeipa-485e4a097ff8c96d3b36cb9c6a53b782f6b8e0cf.tar.xz freeipa-485e4a097ff8c96d3b36cb9c6a53b782f6b8e0cf.zip |
remove icons from association buttons
Diffstat (limited to 'install')
-rw-r--r-- | install/ui/widget.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/install/ui/widget.js b/install/ui/widget.js index 138526fb3..90f6dac8b 100644 --- a/install/ui/widget.js +++ b/install/ui/widget.js @@ -1191,7 +1191,6 @@ IPA.adder_dialog = function (spec) { button = $('input[name=remove]', that.container); that.remove_button = IPA.button({ 'label': button.val(), - 'icon': 'ui-icon-trash', 'click': function() { that.remove(); } @@ -1201,7 +1200,6 @@ IPA.adder_dialog = function (spec) { button = $('input[name=add]', that.container); that.add_button = IPA.button({ 'label': button.val(), - 'icon': 'ui-icon-plus', 'click': function() { that.add(); } |