mirror of
https://github.com/tubearchivist/browser-extension.git
synced 2024-11-25 13:10:14 +00:00
timeout reset button text after click
This commit is contained in:
parent
6b6a9b8b02
commit
59709c4c29
@ -318,8 +318,14 @@ function buttonSuccess(button) {
|
|||||||
}
|
}
|
||||||
if (buttonSpan.innerHTML === "Subscribe") {
|
if (buttonSpan.innerHTML === "Subscribe") {
|
||||||
buttonSpan.innerHTML = "Success";
|
buttonSpan.innerHTML = "Success";
|
||||||
|
setTimeout(() => {
|
||||||
|
buttonSpan.innerHTML = "Subscribe";
|
||||||
|
}, 2000);
|
||||||
} else {
|
} else {
|
||||||
buttonSpan.innerHTML = checkmarkIcon;
|
buttonSpan.innerHTML = checkmarkIcon;
|
||||||
|
setTimeout(() => {
|
||||||
|
buttonSpan.innerHTML = downloadIcon;
|
||||||
|
}, 2000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user