File: /home/s76vzjg2kvav/public_html/admin/plugins/timepicker/custom-timepicker.js
$('.timepicker').datetimepicker({
// format: 'H:mm', // use this format if you want the 24hours timepicker
format: 'h:mm A', //use this format if you want the 12hours timpiecker with AM/PM toggle
icons: {
time: "now-ui-icons tech_watch-time",
date: "now-ui-icons ui-1_calendar-60",
up: "flaticon-arrows-1",
down: "flaticon-down-arrow",
previous: 'now-ui-icons arrows-1_minimal-left',
next: 'now-ui-icons arrows-1_minimal-right',
today: 'fa fa-screenshot',
clear: 'fa fa-trash',
close: 'fa fa-remove'
},
// inline: true,
// sideBySide: true
});
$('#setTimeExample').timepicker();
$('#setTimeButton').on('click', function (){
$('#setTimeExample').timepicker('setTime', new Date());
});
$('#scrollDefaultExample').timepicker({ 'scrollDefault': 'now' });