From 673641d238a641830dabe4c94d5422f34d022025 Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Mon, 2 Nov 2015 14:02:39 -0500 Subject: [PATCH] IOS datepicker format 'yy-mm-dd'. validating that format --- js/app.js | 2 +- js/custom/pageSetup.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/js/app.js b/js/app.js index a3f1ad7..e5067b6 100644 --- a/js/app.js +++ b/js/app.js @@ -79,7 +79,7 @@ $(document).ready(function () { $("#dateOff1").change(function () { currentDate = this.value; - alert(currentDate); + }); $("#date1").datepicker({ minDate: 2, diff --git a/js/custom/pageSetup.js b/js/custom/pageSetup.js index 23cdbf4..8878906 100644 --- a/js/custom/pageSetup.js +++ b/js/custom/pageSetup.js @@ -70,7 +70,7 @@ $(document).ready(function () { $("#dateOff1").change(function () { currentDate = this.value; - alert(currentDate); + }); $("#date1").datepicker({ minDate: 2, -- 2.17.1