Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Web/scripts/schedule.js
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,11 @@ function Schedule(opts, resourceGroups) {
if (opts.scheduleStyle === ScheduleTall) {
width = startTd.outerWidth() - cellAdjustment;
height = endTd.position().top - startTd.position().top;
if (calculatedAdjustment > 0 && height > 0) {
// findClosestEnd was used: endTd is the last slot STARTING before resEnd,
// but height must extend through to the bottom of that slot row
height += endTd.outerHeight();
}
Comment on lines +197 to +201
Comment on lines +197 to +201
top = startTd.position().top;
left += cellAdjustment;
}
Expand Down
Loading