Allow initial number of rows to be set by user

This commit is contained in:
Ian Coleman
2018-02-06 09:57:28 +11:00
parent 0b39e9dca7
commit ba678b1147

View File

@@ -727,7 +727,8 @@
DOM.extendedPubKey.val(extendedPubKey);
// Display the addresses and privkeys
clearAddressesList();
displayAddresses(0, 20);
var initialAddressCount = parseInt(DOM.rowsToAdd.val());
displayAddresses(0, initialAddressCount);
}
function displayAddresses(start, total) {