don't disable copy while setting password. fixes #638
This commit is contained in:
parent
2f8a3c9904
commit
490a1e88eb
|
@ -43,10 +43,6 @@ module.exports = function(state, emit) {
|
||||||
document
|
document
|
||||||
.querySelector('.setPassword')
|
.querySelector('.setPassword')
|
||||||
.classList.toggle('hidden', !boxChecked);
|
.classList.toggle('hidden', !boxChecked);
|
||||||
document
|
|
||||||
.getElementById('copy')
|
|
||||||
.classList.toggle('wait-password', boxChecked);
|
|
||||||
document.getElementById('copy-btn').disabled = boxChecked;
|
|
||||||
if (boxChecked) {
|
if (boxChecked) {
|
||||||
unlockInput.focus();
|
unlockInput.focus();
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue