Primer Primer Commit

This commit is contained in:
2025-09-21 12:14:02 -04:00
parent 3a03b570f9
commit cda4e957de
362 changed files with 215921 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
(function($) {
"use strict"
// MAterial Date picker
$('#mdate').bootstrapMaterialDatePicker({
weekStart: 0,
time: false
});
$('#timepicker').bootstrapMaterialDatePicker({
format: 'HH:mm',
time: true,
date: false
});
$('#date-format').bootstrapMaterialDatePicker({
format: 'dddd DD MMMM YYYY - HH:mm'
});
$('#min-date').bootstrapMaterialDatePicker({
format: 'DD/MM/YYYY HH:mm',
minDate: new Date()
});
})(jQuery);