try to improve scrolling experience
This commit is contained in:
parent
3b2af82d36
commit
797be76c95
1 changed files with 5 additions and 10 deletions
|
@ -580,17 +580,12 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
|
||||||
$rootScope.scrollToBottom = function() {
|
$rootScope.scrollToBottom = function() {
|
||||||
// FIXME doesn't work if the settimeout runs without a short delay
|
// FIXME doesn't work if the settimeout runs without a short delay
|
||||||
var scroll = function() {
|
var scroll = function() {
|
||||||
var readmarker = document.getElementById('readmarker');
|
|
||||||
if(readmarker) {
|
|
||||||
readmarker.scrollIntoView();
|
|
||||||
}else{
|
|
||||||
var bl = document.getElementById('bufferlines');
|
var bl = document.getElementById('bufferlines');
|
||||||
var sTop = bl.scrollTop;
|
var sTop = bl.scrollTop;
|
||||||
var sVal = bl.scrollHeight - bl.clientHeight;
|
var sVal = bl.scrollHeight - bl.clientHeight;
|
||||||
if(sTop < sVal) {
|
if(sTop < sVal) {
|
||||||
bl.scrollTop = sVal;
|
bl.scrollTop = sVal;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
};
|
};
|
||||||
// Here be scrolling dragons
|
// Here be scrolling dragons
|
||||||
$timeout(scroll);
|
$timeout(scroll);
|
||||||
|
|
Loading…
Add table
Reference in a new issue