Sha256: cc75ee7756ac7a50f0a41ea3d81a29ec6b8c59e03a70d72ceca9a4459ce0342b
Contents?: true
Size: 757 Bytes
Versions: 7
Compression:
Stored size: 757 Bytes
Contents
import flatpickr from 'flatpickr' function bindDateTimePickers() { [...document.querySelectorAll('[data-type="time"]')].forEach((time) => { flatpickr(time, { enableTime: true, enableSeconds: true, noCalendar: true, altInput: true, altFormat: ' h:i:S K', dateFormat: 'H:i:S' // H:i }) }); [...document.querySelectorAll('[data-type="datetime"]')].forEach((time) => { flatpickr(time, { enableTime: true, altInput: true, altFormat: 'F J (D), Y - h:i:S K', dateFormat: 'Z' // Y-m-d H:i }) }) } <%- if options[:skip_turbolinks] -%> $(document).ready(function () { <%- else -%> document.addEventListener('turbolinks:load', function () { <%- end -%> bindDateTimePickers() })
Version data entries
7 entries across 7 versions & 1 rubygems