Unverified Commit deb5444f authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

frontend js for checked-in view: never show fractional delays

parent d47ff961
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -79,12 +79,12 @@ function odelay(sched, rt) {
		return '';
	}
	if (sched < rt) {
		return ' (+' + ((rt - sched) / 60) + ')';
		return ' (+' + Math.round((rt - sched) / 60) + ')';
	}
	else if (sched == rt) {
		return '';
	}
	return ' (' + ((rt - sched) / 60) + ')';
	return ' (' + Math.round((rt - sched) / 60) + ')';
}

function tvly_run(link, req, err_callback) {