11 lines
288 B
JavaScript
11 lines
288 B
JavaScript
$(document).ready(function () {
|
|
// Initialize all input of date type.
|
|
const calendar = bulmaCalendar.attach('[type="date"]',{
|
|
weekStart: 1,
|
|
dateFormat: 'dd/MM/yyyy',
|
|
type:"datetime",
|
|
isRange:true,
|
|
color:"link",
|
|
minuteSteps:1});
|
|
});
|