Skip to content

Commit

Permalink
v1.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hatclic committed Feb 5, 2022
1 parent 57b3eb8 commit 8a4f780
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/outils/Main.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,13 @@ class Main {
*/
this.copy = 1;
document.getElementById('copy').addEventListener("click", function(event) {
let cred = document.getElementById('copy');
cred.classList.remove("woow");
cred.offsetWidth;
cred.classList.add("woow");
o.copy == 0 ? o.copy = 1 : o.copy = 0;
if (o.plateau.isLoading) {} else {
let cred = document.getElementById('copy');
cred.classList.remove("woow");
cred.offsetWidth;
cred.classList.add("woow");
o.copy == 0 ? o.copy = 1 : o.copy = 0;
}
}, false);

/**
Expand Down

0 comments on commit 8a4f780

Please sign in to comment.