From 876b3c5cf42e63d9ec33519558c6d49e3c6e8da9 Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Mon, 2 Nov 2015 14:09:08 -0500 Subject: [PATCH] Adjusting input format for off canvas date picker --- js/app.js | 4 +++- js/custom/pageSetup.js | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/js/app.js b/js/app.js index e5067b6..e166187 100644 --- a/js/app.js +++ b/js/app.js @@ -79,7 +79,9 @@ $(document).ready(function () { $("#dateOff1").change(function () { currentDate = this.value; - + $("#dateOff1").val(currentDate); + + }); $("#date1").datepicker({ minDate: 2, diff --git a/js/custom/pageSetup.js b/js/custom/pageSetup.js index 8878906..d36fa92 100644 --- a/js/custom/pageSetup.js +++ b/js/custom/pageSetup.js @@ -70,7 +70,9 @@ $(document).ready(function () { $("#dateOff1").change(function () { currentDate = this.value; - + $("#dateOff1").val(currentDate); + + }); $("#date1").datepicker({ minDate: 2, -- 2.17.1