gui: Scroll to bottom by clicking message in log viewer (#9128)
This commit is contained in:
@@ -1430,6 +1430,11 @@ angular.module('syncthing.core')
|
||||
// Browser events do not cause redraw, trigger manually.
|
||||
$scope.$apply();
|
||||
},
|
||||
scrollToBottom: function () {
|
||||
var textArea = $('#logViewerText');
|
||||
var scrollHeight = textArea.prop('scrollHeight');
|
||||
textArea.prop('scrollTop', scrollHeight);
|
||||
},
|
||||
timer: null,
|
||||
entries: [],
|
||||
paused: false,
|
||||
|
||||
Reference in New Issue
Block a user