зеркало из https://github.com/mozilla/gecko-dev.git
Fixing bug 195585, Go To Today now changes the large and small calendar.
This commit is contained in:
Родитель
92262361e0
Коммит
142a15ec79
|
@ -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;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче