summaryrefslogtreecommitdiff
path: root/platform/www/lib/plugins/bureaucracy/script/datepicker.js
blob: 1716cbe34e51381c7cb9960ee1694024c24e98a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
/**
 * Init datepicker for all date fields
 */

jQuery(function(){
    jQuery('.bureaucracy__plugin .datepicker').datepicker({
        dateFormat: "yy-mm-dd",
        changeMonth: true,
        changeYear: true
    });
});