Checked in patch for bug 247861

This commit is contained in:
mostafah%oeone.com 2004-06-22 15:51:08 +00:00
Родитель 3653b6e40b
Коммит 6e3296f240
1 изменённых файлов: 4 добавлений и 4 удалений

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

@ -165,17 +165,17 @@ DayView.prototype.refreshEvents = function dayview_refreshEvents( ) {
allDayLabel.setAttribute("width", kDayViewHourLeftStart - 10);
for( i = 0; i < allDayEvents.length; i++ ) {
eventBox = this.createAllDayEventBox( allDayEvents[i] );
this.insertAllDayEventBox(eventBox, allDayBox);
var allDayEventBox = this.createAllDayEventBox( allDayEvents[i] );
this.insertAllDayEventBox(allDayEventBox, allDayBox);
this.kungFooDeathGripOnEventBoxes.push( eventBox );
this.kungFooDeathGripOnEventBoxes.push( allDayEventBox );
}
}
// Add non-allday events to DOM
for ( i = 0; i < normalEvents.length; ++i )
{
eventBox = this.createEventBox( normalEvents[i] );
var eventBox = this.createEventBox( normalEvents[i] );
document.getElementById( "day-view-content-board" ).appendChild( eventBox );
this.kungFooDeathGripOnEventBoxes.push( eventBox );
}