Still more whitespace fixing.

This commit is contained in:
Rob Sayre 2011-06-25 11:02:35 -07:00
parent d0544a3511
commit ee954d8c0a

View File

@ -203,7 +203,7 @@ function clear(ctx) {
/* Auto-scroll if the scrollbar is near the bottom, otherwise do nothing. */ /* Auto-scroll if the scrollbar is near the bottom, otherwise do nothing. */
function checkScrolling() { function checkScrolling() {
if ((stdout.scrollHeight - stdout.scrollTop) <= stdout.offsetHeight) { if ((stdout.scrollHeight - stdout.scrollTop) <= stdout.offsetHeight) {
stdout.scrollTop = stdout.scrollHeight; stdout.scrollTop = stdout.scrollHeight;
} }
} }