Bug 343194 DnD month view: Error if event is dragged out of displayed calendar date range, r=dmose

This commit is contained in:
jminta%gmail.com 2006-07-21 00:54:24 +00:00
Родитель c2967a5839
Коммит 0114049ac6
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -450,8 +450,9 @@
dropbox.setAttribute("dropbox", "true");
dropbox.setAttribute("flex", "1");
var box = this.monthView.findBoxForDate(shadowStart).box;
box.dayitems.insertBefore(dropbox, box.dayitems.firstChild);
var box = this.monthView.findBoxForDate(shadowStart); if (!box) { // Dragging to the end of a view
shadowStart.day += 1;
shadowStart.normalize(); continue; } box.box.dayitems.insertBefore(dropbox, box.box.dayitems.firstChild);
this.monthView.mDropShadows.push(dropbox);
shadowStart.day += 1;