You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

11 lines
222 B

  1. /**
  2. * Init datepicker for all date fields
  3. */
  4. jQuery(function(){
  5. jQuery('.bureaucracy__plugin .datepicker').datepicker({
  6. dateFormat: "yy-mm-dd",
  7. changeMonth: true,
  8. changeYear: true
  9. });
  10. });