From d2413267c8c966a92af772624205b075557babae Mon Sep 17 00:00:00 2001 From: OutCast3k Date: Tue, 24 Mar 2015 00:40:56 +0000 Subject: [PATCH] fixed a gui issue with the open wallet section of coinb.in --- index.html | 3 ++- js/coinbin.js | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index f97b2b3..a0a8213 100644 --- a/index.html +++ b/index.html @@ -193,8 +193,9 @@ +
-
+
diff --git a/js/coinbin.js b/js/coinbin.js index 30ac797..c41bef3 100644 --- a/js/coinbin.js +++ b/js/coinbin.js @@ -206,7 +206,7 @@ $(document).ready(function() { }); $("#walletSpendTo .addressAdd").click(function(){ - var clone = '
'+$(this).parent().html()+'
'; + var clone = '
'+$(this).parent().html()+'
'; $("#walletSpendTo").append(clone); $("#walletSpendTo .glyphicon-plus:last").removeClass('glyphicon-plus').addClass('glyphicon-minus'); $("#walletSpendTo .glyphicon-minus:last").parent().removeClass('addressAdd').addClass('addressRemove');