From 142a15ec79adb18f80257f2154140ceb560ec653 Mon Sep 17 00:00:00 2001 From: "mikep%oeone.com" Date: Fri, 21 Mar 2003 15:34:29 +0000 Subject: [PATCH] Fixing bug 195585, Go To Today now changes the large and small calendar. --- calendar/resources/content/calendarWindow.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/calendar/resources/content/calendarWindow.js b/calendar/resources/content/calendarWindow.js index 4449b63a99a5..6fc25baa12be 100644 --- a/calendar/resources/content/calendarWindow.js +++ b/calendar/resources/content/calendarWindow.js @@ -276,7 +276,12 @@ CalendarWindow.prototype.goToToday = function calWin_goToToday( ) { this.clearSelectedEvent( ); - this.currentView.goToDay( new Date() ) + var Today = new Date(); + + this.currentView.goToDay( Today ); + + document.getElementById( "lefthandcalendar" ).value = Today; + }