mirror of
https://github.com/ok2/coinbin.git
synced 2026-05-09 18:15:23 +02:00
updated to the new bootstrap, given the home page a make over and a few other minor tweaks
This commit is contained in:
+4
-1
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user