modifiche al javascript movimenti
This commit is contained in:
parent
0121ed8381
commit
72523344bc
3
public/js/app/movimenti.js
vendored
3
public/js/app/movimenti.js
vendored
@ -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;
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user