Layout folder move to admin and frontend

This commit is contained in:
Clemens Schwaighofer
2024-02-27 12:02:03 +09:00
parent a377ab4b61
commit b6ae3f99d9
832 changed files with 3 additions and 8 deletions

View File

@@ -0,0 +1,16 @@
/* jquery tests */
/* global setCenter ClearCall overlayBoxShow actionIndicatorShow actionIndicatorHide */
/* eslint no-undef: "error" */
$(document).ready(function() {
setCenter('test-div', true, true);
ClearCall();
overlayBoxShow();
actionIndicatorShow('testSmarty');
setTimeout(function() {
console.log('Waiting dummy ...');
actionIndicatorHide('testSmarty');
ClearCall();
}, 2000);
});