summaryrefslogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2011-09-26 10:24:14 -0500
committerEndi S. Dewata <edewata@redhat.com>2011-09-26 16:40:37 +0000
commit050d7f09447298b4036c7a3b6368282a9442cb99 (patch)
tree53275b10b88af512323346e42da6995cd92894f3 /install
parent2b322a46a600f2b0948b8a1b41ee394ffcf8df5e (diff)
downloadfreeipa-050d7f09447298b4036c7a3b6368282a9442cb99.tar.gz
freeipa-050d7f09447298b4036c7a3b6368282a9442cb99.tar.xz
freeipa-050d7f09447298b4036c7a3b6368282a9442cb99.zip
Fixed add/delete arrows position.
The IPA.adder_dialog has been modified such that it shows the >> arrow first then the << arrow. Ticket #1858
Diffstat (limited to 'install')
-rw-r--r--install/ui/dialog.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/install/ui/dialog.js b/install/ui/dialog.js
index e533e4af8..b8d3afc7f 100644
--- a/install/ui/dialog.js
+++ b/install/ui/dialog.js
@@ -372,15 +372,15 @@ IPA.adder_dialog = function(spec) {
var p = $('<p/>').appendTo(buttons_panel);
$('<input />', {
type: 'button',
- name: 'remove',
- value: '<<'
+ name: 'add',
+ value: '>>'
}).appendTo(p);
p = $('<p/>').appendTo(buttons_panel);
$('<input />', {
type: 'button',
- name: 'add',
- value: '>>'
+ name: 'remove',
+ value: '<<'
}).appendTo(p);