From d1a91ce6b7906f176426b2fec430b43421de0262 Mon Sep 17 00:00:00 2001 From: bradymiller Date: Tue, 21 Aug 2012 22:40:02 -0700 Subject: [PATCH] Bug fix to allow choosing times in Calendar to work in Firefox and IE9 (already working in chrome) --- library/js/calendarDirectSelect.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/library/js/calendarDirectSelect.js b/library/js/calendarDirectSelect.js index d859787cd..eb919968e 100644 --- a/library/js/calendarDirectSelect.js +++ b/library/js/calendarDirectSelect.js @@ -34,12 +34,12 @@ function updateApptTime(marker,index,y,date,provider) } function displayApptTime(evt) { - + marker=$(this).find("a.apptMarker"); if(marker.length==0) { style="style=\'height:"+tsHeight+";\'" - $(this).find("div.calendar_day").append(""); + $(this).find("div.calendar_day").append(""); marker=$(this).find("a.apptMarker"); marker.css("z-index",1); } @@ -70,5 +70,5 @@ function updateApptTime(marker,index,y,date,provider) function setupDirectTime() { $("td.schedule").mousemove(displayApptTime); - $("td.schedule").mouseout(hideApptTime); - } \ No newline at end of file + $("td.schedule").mouseleave(hideApptTime); + } -- 2.11.4.GIT