mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-22 16:42:51 +01:00
10 lines
238 B
JavaScript
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();
|
|
}
|