mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
15 lines
487 B
Plaintext
15 lines
487 B
Plaintext
$(document).ready(function() {
|
|
$('.datetimepicker').datetimepicker({
|
|
dateFormat: Spree.translations.date_picker,
|
|
dayNames: Spree.translations.abbr_day_names,
|
|
dayNamesMin: Spree.translations.abbr_day_names,
|
|
monthNames: Spree.translations.month_names,
|
|
prevText: Spree.translations.previous,
|
|
nextText: Spree.translations.next,
|
|
showOn: "button",
|
|
buttonImage: "<%= asset_path 'datepicker/cal.gif' %>",
|
|
buttonImageOnly: true,
|
|
stepMinute: 15
|
|
});
|
|
});
|