Mini Shell

Direktori : /home/ecoikhhp/public_html/admin/public/assets/admin/js/plugins-init/
Upload File :
Current File : /home/ecoikhhp/public_html/admin/public/assets/admin/js/plugins-init/clock-picker-init.js

(function($) {
    "use strict"

    // Clock pickers
    var input = $('#single-input').clockpicker({
        placement: 'bottom',
        align: 'left',
        autoclose: true,
        'default': 'now'
    });

    $('.clockpicker').clockpicker({
        donetext: 'Done',
    }).find('input').change(function () {
        console.log(this.value);
    });

    $('#check-minutes').click(function (e) {
        // Have to stop propagation here
        e.stopPropagation();
        input.clockpicker('show').clockpicker('toggleView', 'minutes');
    });

})(jQuery)