From 00ef88d849b297c4ca3e97f697d821ada012738c Mon Sep 17 00:00:00 2001 From: Kevin Yeh Date: Wed, 18 Jan 2012 00:07:19 -0500 Subject: [PATCH] Fix for javascript error triggered when mouse moved over provider name in day view. No longer tries to access anchor tag which didn't exist --- library/js/calendarDirectSelect.js | 1 + 1 file changed, 1 insertion(+) diff --git a/library/js/calendarDirectSelect.js b/library/js/calendarDirectSelect.js index bd3a116b6..d859787cd 100644 --- a/library/js/calendarDirectSelect.js +++ b/library/js/calendarDirectSelect.js @@ -54,6 +54,7 @@ function updateApptTime(marker,index,y,date,provider) if(index==0) { marker.hide(); + return; } } marker.css("top",y); -- 2.11.4.GIT