We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d55f141 commit 1f06ec2Copy full SHA for 1f06ec2
lightpick.js
@@ -54,6 +54,7 @@
54
tooltipNights: false,
55
orientation: 'auto',
56
disableWeekends: false,
57
+ dontRedrawAfterSelect: false,
58
inline: false,
59
dropdowns: {
60
years: {
@@ -574,7 +575,7 @@
574
575
self.hide();
576
}, 100);
577
}
- else if (!opts.singleDate || opts.inline) {
578
+ else if (!opts.dontRedrawAfterSelect && (!opts.singleDate || opts.inline)) {
579
updateDates(self.el, opts);
580
581
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "lightpick",
3
- "version": "1.3.5",
+ "version": "1.3.6",
4
"description": "Javascript date range picker - lightweight, no jQuery",
5
"main": "lightpick.js",
6
"scripts": {
0 commit comments