Fixing bug 195585, Go To Today now changes the large and small calendar.

This commit is contained in:
mikep%oeone.com 2003-03-21 15:34:29 +00:00
Родитель 92262361e0
Коммит 142a15ec79
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -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;
}