Browse Source

fix wallet creation from homepage.

fee_issues
fiatjaf 5 years ago
parent
commit
391ec689ff
  1. 5
      LNbits/static/app.js

5
LNbits/static/app.js

@ -280,8 +280,9 @@ function sidebarmake() {
}
function newwallet() {
walname = document.getElementById('walname').value
window.location.href = 'wallet?usr=' + user + '&nme=' + walname
var walname = document.getElementById('walname').value
window.location.href =
'wallet?' + (user ? 'usr=' + user + '&' : '') + 'nme=' + walname
}
function drawChart(transactions) {

Loading…
Cancel
Save