moove animate function to general script

This commit is contained in:
simon 2021-09-15 20:47:26 +07:00
parent 2a256bbd06
commit 0e4de95f97
2 changed files with 7 additions and 9 deletions

View File

@ -71,10 +71,3 @@ function buildDownloadMessage(dlProgress) {
message.appendChild(messageText);
box.appendChild(message);
};
function animate(elementId, animationClass) {
var toAnimate = document.getElementById(elementId);
if (toAnimate.className !== animationClass) {
toAnimate.className = animationClass;
}
}

View File

@ -82,7 +82,6 @@ function downloadNow(button) {
// settings page buttons
function manualImport() {
var payload = JSON.stringify({'manual-import': true});
console.log(payload);
sendPost(payload);
// clear button
var message = document.createElement('p');
@ -258,7 +257,6 @@ function showSearch() {
}
function showForm() {
console.log('show hidden form');
var formElement = document.getElementById('hidden-form');
var displayStyle = formElement.style.display
if (displayStyle === "") {
@ -268,3 +266,10 @@ function showForm() {
formElement.style.display = "";
}
}
function animate(elementId, animationClass) {
var toAnimate = document.getElementById(elementId);
if (toAnimate.className !== animationClass) {
toAnimate.className = animationClass;
}
}