force redraw on each new CLI messages (bugfix)

fixes failed / half-redraw behavior that i am experiencing on windows
with chromium 33+ beta
10.3.x-maintenance
cTn 2014-01-24 22:17:17 +01:00
parent 7edc3605e5
commit 793be64474
1 changed files with 4 additions and 1 deletions

View File

@ -169,5 +169,8 @@ function handle_CLI(readInfo) {
}
$('.tab-cli .window .wrapper').append(text);
$('.tab-cli .window').scrollTop($('.tab-cli .window .wrapper').height()); // there seems to be some sort of initial rendering glitch in 33+, why?
$('.tab-cli .window').scrollTop($('.tab-cli .window .wrapper').height());
// there seems to be some sort of initial rendering glitch in 33+, we will force redraw/refill
$('.tab-cli .window .wrapper').css('webkitTransform', 'scale(1)');
}