From 0ce9ad20c1f12213e8513ea2e3e09cb57e736a14 Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Tue, 5 Jan 2016 14:18:14 -0500 Subject: [PATCH] added calendar icon to date fields --- js/app.js | 6 +++--- js/custom/pageSetup.js | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/js/app.js b/js/app.js index e1f6dbe..b47683f 100644 --- a/js/app.js +++ b/js/app.js @@ -31,17 +31,17 @@ $(document).ready(function () { // Vendor Registration DOB input3_3 $( "#input_3_3" ).datepicker({ - showOn: "button", + showOn: "both", buttonImage: "http://jqueryui.com/resources/demos/datepicker/images/calendar.gif", buttonImageOnly: true }); $( "#input_4_6" ).datepicker({ - showOn: "button", + showOn: "both", buttonImage: "http://jqueryui.com/resources/demos/datepicker/images/calendar.gif", buttonImageOnly: true }); $( "#input_5_20" ).datepicker({ - showOn: "button", + showOn: "both", buttonImage: "http://jqueryui.com/resources/demos/datepicker/images/calendar.gif", buttonImageOnly: true }); diff --git a/js/custom/pageSetup.js b/js/custom/pageSetup.js index ad473f2..9e99775 100644 --- a/js/custom/pageSetup.js +++ b/js/custom/pageSetup.js @@ -22,17 +22,17 @@ $(document).ready(function () { // Vendor Registration DOB input3_3 $( "#input_3_3" ).datepicker({ - showOn: "button", + showOn: "both", buttonImage: "http://jqueryui.com/resources/demos/datepicker/images/calendar.gif", buttonImageOnly: true }); $( "#input_4_6" ).datepicker({ - showOn: "button", + showOn: "both", buttonImage: "http://jqueryui.com/resources/demos/datepicker/images/calendar.gif", buttonImageOnly: true }); $( "#input_5_20" ).datepicker({ - showOn: "button", + showOn: "both", buttonImage: "http://jqueryui.com/resources/demos/datepicker/images/calendar.gif", buttonImageOnly: true }); -- 2.17.1