From d892a4b5ae0855c5771f6297c8f5235dcf15a07a Mon Sep 17 00:00:00 2001 From: denise Date: Tue, 26 Jun 2012 16:43:36 -0400 Subject: [PATCH] CC-4009: Calendar icon cannot be clicked twice without clicking another icon first -fixed --- airtime_mvc/public/js/airtime/showbuilder/main_builder.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/airtime_mvc/public/js/airtime/showbuilder/main_builder.js b/airtime_mvc/public/js/airtime/showbuilder/main_builder.js index ca007e69c..c474e49df 100644 --- a/airtime_mvc/public/js/airtime/showbuilder/main_builder.js +++ b/airtime_mvc/public/js/airtime/showbuilder/main_builder.js @@ -30,7 +30,7 @@ AIRTIME = (function(AIRTIME) { oBaseDatePickerSettings = { dateFormat: 'yy-mm-dd', - onSelect: function(sDate, oDatePicker) { + onClick: function(sDate, oDatePicker) { $(this).datepicker( "setDate", sDate ); } }; @@ -277,4 +277,4 @@ AIRTIME = (function(AIRTIME) { } (AIRTIME || {})); $(document).ready(AIRTIME.builderMain.onReady); -$(window).resize(AIRTIME.builderMain.onResize); \ No newline at end of file +$(window).resize(AIRTIME.builderMain.onResize);