modifiche al javascript movimenti

This commit is contained in:
2023-10-04 14:14:54 +02:00
parent 0121ed8381
commit 72523344bc
2 changed files with 2 additions and 2 deletions

View File

@@ -12,12 +12,11 @@ $(document).ready(function() {
});
$(".draggable").draggable();
var d = new Date();
var month = d.getMonth()+1;
var day = d.getDate();
var strDate = d.getFullYear() + '-' +
(month<10 ? '0' : '') + month + '-' +
(day<10 ? '0' : '') + day;