5 Commits

Author SHA1 Message Date
Janis
832aa9beb0 v0.0.6 2022-10-29 16:48:22 +02:00
Janis
7bb209a8d6 2s to 11s 2022-10-29 16:48:09 +02:00
Janis
85501820f1 add config to gitignore to prevent pushing apikey by accident 2022-10-29 15:55:50 +02:00
Janis
b12a9742f1 gitignore 2022-10-29 15:55:03 +02:00
Janis
9de4c7fc03 added gitignore 2022-10-29 15:54:19 +02:00
3 changed files with 5 additions and 4 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
config.js

View File

@@ -16,10 +16,10 @@ function updateSubCount() {
function sub(subName) { function sub(subName) {
frame.style.animationName = "subAnimation"; frame.style.animationName = "subAnimation";
frame.style.animationDuration = "2s"; frame.style.animationDuration = "11s";
subCount.style.animationName = "backgroundSubAnimation"; subCount.style.animationName = "backgroundSubAnimation";
subCount.style.animationDuration = "2s"; subCount.style.animationDuration = "11s";
subCount.innerText = subName + " " + subCountNumber; subCount.innerText = subName + " " + subCountNumber;
@@ -31,6 +31,6 @@ function sub(subName) {
subCount.style.animationDuration = "20s"; subCount.style.animationDuration = "20s";
subCount.innerText = subCountNumber; subCount.innerText = subCountNumber;
updateSubCount(); updateSubCount();
}, 2000); }, 11000);
} }
updateSubCount(); updateSubCount();

View File

@@ -1,3 +1,3 @@
{ {
"version": "v0.0.5" "version": "v0.0.6"
} }