calendar fixes

This commit is contained in:
medet97 2020-04-30 14:16:36 +05:00
parent 949d0b2976
commit 4f40bd8cb7
1 changed files with 7 additions and 7 deletions

View File

@ -41,13 +41,6 @@
@endsection
@section('after_scripts')
<script>
$(document).ready(function () {
function gotoFunc(){
alert('hit');
}
});
</script>
<script src="{{asset('vendor/gijgo/gijgo.min.js')}}" type="text/javascript"></script>
<script>
$('#datepicker').datepicker({
@ -58,4 +51,11 @@
});
</script>
<script>
$(document).ready(function () {
$('#datepicker').datepicker().on('changeDate', function (e) {
alert('43');
});
});
</script>
@endsection