Implement a workaround to get scroll to bottom working again

This commit is contained in:
Tor Hveem 2013-10-11 13:41:36 +02:00
parent cb4f811a12
commit f666c0c9fe

View file

@ -441,9 +441,12 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
});
$rootScope.scrollToBottom = function() {
$timeout(function(){
window.scrollTo(0, window.scrollMaxY-1);
});
// FIXME doesn't work if the settimeout runs without a short delay
// 300 ms seems to do the trick but creates a noticable flickr
$timeout(function() {
// TODO in the future, implement scrolling to last read line
window.scrollTo(0, document.querySelector('.bufferline:last-child').offsetTop);
}, 300);
}
$scope.sendMessage = function() {