Enable automatic scrolling while trailing logs

This commit is contained in:
Johannes Zellner
2017-08-10 21:49:06 +02:00
parent f17bde2d97
commit 7ba5d1e0d6

View File

@@ -64,7 +64,7 @@ angular.module('Application').controller('LogsController', ['$scope', '$location
logLine.html('<span class="time">' + timeString + ' </span>' + window.ansiToHTML(typeof data.message === 'string' ? data.message : ab2str(data.message)));
logViewer.append(logLine);
// if (autoScroll) tmp.lastChild.scrollIntoView({ behavior: 'instant', block: 'end' });
if (autoScroll) tmp.lastChild.scrollIntoView({ behavior: 'instant', block: 'end' });
};
});
});