modifiche al javascript movimenti

This commit is contained in:
Amministratore 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 d = new Date();
var month = d.getMonth()+1; var month = d.getMonth()+1;
var day = d.getDate(); var day = d.getDate();
var strDate = d.getFullYear() + '-' + var strDate = d.getFullYear() + '-' +
(month<10 ? '0' : '') + month + '-' + (month<10 ? '0' : '') + month + '-' +
(day<10 ? '0' : '') + day; (day<10 ? '0' : '') + day;

View File

@ -136,6 +136,7 @@
@endsection @endsection
@section('js') @section('js')
<script src="https://code.jquery.com/ui/1.13.1/jquery-ui.min.js"></script>
<script src="/js/app/movimenti.js"></script> <script src="/js/app/movimenti.js"></script>
@endsection @endsection