Fixed add/delete arrows position.

The IPA.adder_dialog has been modified such that it shows the >>
arrow first then the << arrow.

Ticket #1858
This commit is contained in:
Endi S. Dewata
2011-09-26 10:24:14 -05:00
parent 2b322a46a6
commit 050d7f0944

View File

@@ -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);