1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2025-09-06 07:53:11 +02:00
Files

10 lines
238 B
JavaScript

// noinspection JSUnusedGlobalSymbols
function showModal(id) {
bootstrap.Modal.getOrCreateInstance(document.getElementById(id)).show();
}
function closeModal(id) {
bootstrap.Modal.getInstance(document.getElementById(id)).hide();
}