Initial Commit

This commit is contained in:
usmannasir
2017-10-24 19:16:36 +05:00
commit 11eae3f9fe
2124 changed files with 528735 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
/* jQuery UI Datepicker */
$(function() {
"use strict";
$("#fromDate").datepicker({
defaultDate: "+1w",
changeMonth: true,
numberOfMonths: 3,
onClose: function(selectedDate) {
$("#toDate").datepicker("option", "minDate", selectedDate);
}
});
$("#toDate").datepicker({
defaultDate: "+1w",
changeMonth: true,
numberOfMonths: 3,
onClose: function(selectedDate) {
$("#fromDate").datepicker("option", "maxDate", selectedDate);
}
});
});
$(function() {
"use strict";
$("#datepicker_multiple_months").datepicker({
numberOfMonths: 3,
showButtonPanel: true
});
});
$(function() {
"use strict";
$(".datepicker").datepicker();
});