1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2024-11-22 16:42:51 +01:00
Minecraft-Phantom-Panel/Server/Phantom.Server.Web/wwwroot/js/site.js

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();
}