MCPcopy Create free account
hub / github.com/IceClusters/icmysql / OpenUI

Function OpenUI

debug/js/app.js:260–277  ·  view source on GitHub ↗
(state)

Source from the content-addressed store, hash-verified

258let isOpened = false;
259
260function OpenUI(state) {
261 if (state){
262 $("#main-container").css("display", "flex");
263 $(".menu").removeClass("animate__fadeOutDown");
264 $(".menu").css("display", "flex");
265 $(".menu").addClass("animate__fadeInUp");
266 }else {
267 $(".menu").removeClass("animate__fadeInUp");
268 $(".menu").addClass("animate__fadeOutDown");
269 setTimeout(() => {
270 $("#main-container").css("display", "none");
271 $.post("https://icmysql/closeDebugUI", {});
272 }, 1000);
273 }
274
275
276 isOpen = state;
277}
278
279// LoadResources([
280// {

Callers 1

app.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected