1
0
Fork 0
MastodonStartpage/web/admin/js/alerta.js

5 lines
260 B
JavaScript
Raw Permalink Normal View History

2019-12-26 21:57:36 +01:00
function alerta(msg) {
2020-01-13 17:16:33 +01:00
document.getElementById('popupcont').innerHTML='<h2>Attenzione</h2>'+msg+'<input type="button" value="Ok" onClick="document.getElementById(\'popup\').style.display=\'none\'">';
2019-12-26 21:57:36 +01:00
document.getElementById('popup').style.display='table';
}