fixed a gui issue with the open wallet section of coinb.in

This commit is contained in:
OutCast3k
2015-03-24 00:40:56 +00:00
parent 235ae93ee8
commit d2413267c8
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -206,7 +206,7 @@ $(document).ready(function() {
});
$("#walletSpendTo .addressAdd").click(function(){
var clone = '<div class="form-inline output">'+$(this).parent().html()+'</div>';
var clone = '<div class="form-horizontal output">'+$(this).parent().html()+'</div>';
$("#walletSpendTo").append(clone);
$("#walletSpendTo .glyphicon-plus:last").removeClass('glyphicon-plus').addClass('glyphicon-minus');
$("#walletSpendTo .glyphicon-minus:last").parent().removeClass('addressAdd').addClass('addressRemove');