From 33ebe38fbedbf88ab8f17726f0cc030125d51f0b Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Mon, 25 Jan 2016 16:59:49 -0500 Subject: [PATCH] testing calendar icon click --- js/app.js | 2 ++ js/custom/pageSetup.js | 2 ++ 2 files changed, 4 insertions(+) diff --git a/js/app.js b/js/app.js index b062f98..98d446a 100644 --- a/js/app.js +++ b/js/app.js @@ -74,9 +74,11 @@ $(document).ready(function () { }); } }; + $("#arriveCal").click(function () { $("#arrive").datepicker("show"); }); + $("#departCal").click(function () { $("#depart").datepicker("show"); }); diff --git a/js/custom/pageSetup.js b/js/custom/pageSetup.js index b4e9bee..94d07be 100644 --- a/js/custom/pageSetup.js +++ b/js/custom/pageSetup.js @@ -65,9 +65,11 @@ $(document).ready(function () { }); } }; + $("#arriveCal").click(function () { $("#arrive").datepicker("show"); }); + $("#departCal").click(function () { $("#depart").datepicker("show"); }); -- 2.17.1