fixed download button multi-click. fixes #927
This commit is contained in:
parent
93e82cf953
commit
fb83b324ab
|
@ -22,14 +22,15 @@ module.exports = function(state, emit) {
|
||||||
}
|
}
|
||||||
|
|
||||||
return html`
|
return html`
|
||||||
<button class="btn btn--download ${btnClass}"
|
<button class="btn btn--download ${btnClass}"
|
||||||
onclick=${download}>
|
onclick=${download}>
|
||||||
${btnText}
|
${btnText}
|
||||||
</button>`;
|
</button>`;
|
||||||
|
|
||||||
function download(event) {
|
function download(event) {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
if (downloadState !== 'complete') {
|
event.target.disabled = true;
|
||||||
|
if (downloadState === 'ready') {
|
||||||
emit('download', state.fileInfo);
|
emit('download', state.fileInfo);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue