updated to the new bootstrap, given the home page a make over and a few other minor tweaks

This commit is contained in:
OutCast3k
2015-03-23 13:02:29 +00:00
parent a0fb57fdde
commit 235ae93ee8
10 changed files with 359 additions and 252 deletions
+5 -7
View File
File diff suppressed because one or more lines are too long
+4 -1
View File
@@ -320,7 +320,7 @@ $(document).ready(function() {
$("#multisigPubKeys .pubkeyAdd").click(function(){
if($("#multisigPubKeys .pubkeyRemove").length<14){
var clone = '<div class="form-inline">'+$(this).parent().html()+'</div>';
var clone = '<div class="form-horizontal">'+$(this).parent().html()+'</div>';
$("#multisigPubKeys").append(clone);
$("#multisigPubKeys .glyphicon-plus:last").removeClass('glyphicon-plus').addClass('glyphicon-minus');
$("#multisigPubKeys .glyphicon-minus:last").parent().removeClass('pubkeyAdd').addClass('pubkeyRemove');
@@ -645,6 +645,7 @@ $(document).ready(function() {
$('<tr><td><input type="text" class="form-control" value="'+decode.pubkeys[i]+'" readonly></td></tr>').appendTo("#verifyRsData table tbody");
}
$("#verifyRsData").removeClass("hidden");
$(".verifyLink").attr('href','?verify='+$("#verifyScript").val());
return true;
} else {
return false;
@@ -726,6 +727,7 @@ $(document).ready(function() {
});
$(h).appendTo("#verifyTransactionData .outs tbody");
$(".verifyLink").attr('href','?verify='+$("#verifyScript").val());
return true;
} catch(e) {
return false;
@@ -768,6 +770,7 @@ $(document).ready(function() {
try {
$("#verifyPubKey .address").val(coinjs.pubkey2address(pubkey));
$("#verifyPubKey").removeClass("hidden");
$(".verifyLink").attr('href','?verify='+$("#verifyScript").val());
return true;
} catch (e) {
return false;