Newer
Older
dmpopidor / app / javascript / utils / datePicker.js
@John Pinto John Pinto on 7 Mar 2019 403 bytes Added missing icons and fot to asset folder.
import 'jquery-ui/ui/widgets/datepicker';

/*
 * Date picker polyfill:
 * Wire up the JQuery UI DatePicker if the browser does not support the HTML5 date
 */
export default () => {
  if ($('[type="date"]').prop('type') !== 'date') {
    $('[type="date"]').datepicker({
      dateFormat: 'yy-mm-dd',
      constrainInput: true,
      navigationAsDateFormat: true,
      goToCurrent: true,
    });
  }
};