mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 09:02:15 -06:00
md: fix eof scroll glitch
This commit is contained in:
parent
a2d866d0c2
commit
b164aa00d4
|
@ -177,7 +177,7 @@ redraw = (function () {
|
|||
y += src.clientHeight / 2;
|
||||
var sy1 = -1, sy2 = -1, dy1 = -1, dy2 = -1;
|
||||
for (var a = 1; a < nlines + 1; a++) {
|
||||
if (srcmap[a] === null || dstmap[a] === null)
|
||||
if (srcmap[a] == null || dstmap[a] == null)
|
||||
continue;
|
||||
|
||||
if (srcmap[a] > y) {
|
||||
|
|
Loading…
Reference in a new issue