hide also in copy

This commit is contained in:
Matteo Manzinello 2019-09-17 00:32:54 +02:00
parent d06681ad58
commit 96c083187d

View File

@ -520,7 +520,10 @@ const actions = {
? (copyButton = getE("mailgo-copy"))
: (copyButton = getE("mailgo-tel-copy"));
copyButton.textContent = "copied";
setTimeout(() => (copyButton.textContent = "copy"), 999);
setTimeout(() => {
copyButton.textContent = "copy";
hideMailgo();
}, 999);
}
};