first commit

This commit is contained in:
MaddoScientisto 2026-03-14 20:04:39 +01:00
commit 4d332ef662
27586 changed files with 3281783 additions and 0 deletions

14
www/_js/rus-fotoView.js Normal file
View file

@ -0,0 +1,14 @@
function scaricaFoto(url){
redirect_blank(url);
$("#ModalLog").modal("hide");
}
function redirect_blank(url) {
var a = document.createElement('a');
a.target="_blank";
a.href=url;
a.click();
}