Fix Nav.scroll

This commit is contained in:
Zixaphir 2013-05-10 22:59:14 -07:00
parent 17755b435b
commit 0bb1a4db18
4 changed files with 4 additions and 4 deletions

View File

@ -8966,7 +8966,7 @@
getThread: function(full) {
var headRect, i, rect, thread, threads, topMargin, _i, _len;
if (Conf['Bottom header']) {
if (Conf['Bottom header'] || !Conf['Fixed Header']) {
topMargin = 0;
} else {
headRect = Header.bar.getBoundingClientRect();

View File

@ -8975,7 +8975,7 @@
getThread: function(full) {
var headRect, i, rect, thread, threads, topMargin, _i, _len;
if (Conf['Bottom header']) {
if (Conf['Bottom header'] || !Conf['Fixed Header']) {
topMargin = 0;
} else {
headRect = Header.bar.getBoundingClientRect();

View File

@ -8958,7 +8958,7 @@
getThread: function(full) {
var headRect, i, rect, thread, threads, topMargin, _i, _len;
if (Conf['Bottom header']) {
if (Conf['Bottom header'] || !Conf['Fixed Header']) {
topMargin = 0;
} else {
headRect = Header.bar.getBoundingClientRect();

View File

@ -39,7 +39,7 @@ Nav =
Nav.scroll +1
getThread: (full) ->
if Conf['Bottom header']
if Conf['Bottom header'] or !Conf['Fixed Header']
topMargin = 0
else
headRect = Header.bar.getBoundingClientRect()