Sha256: 345a1bc575e0765ff29f72cadf7601e1854425a7c29fa3031e05432b5bb6eae9
Contents?: true
Size: 413 Bytes
Versions: 45
Compression:
Stored size: 413 Bytes
Contents
(($) => { $(document) .on('focus', 'input.datepicker:not(.hasDatepicker)', function() { const input = $(this); // Only create datepickers in compatible browsers if (input[0].type === 'date') { return; } const defaults = { dateFormat: 'yy-mm-dd' }; const options = input.data('datepicker-options'); input.datepicker($.extend(defaults, options)); }); })(jQuery);
Version data entries
45 entries across 45 versions & 4 rubygems