Fix logic on scroll buttons

This commit is contained in:
Mike Primm 2011-08-16 11:59:08 -05:00
parent 4be423cfb8
commit d5d01cf5af

View File

@ -246,7 +246,7 @@ DynMap.prototype = {
var updateHeight = function() {
playerlist.height(sidebar.innerHeight() - (playerlist.offset().top - worldlist.offset().top) - 64); // here we need a fix to avoid the static value, but it works fine this way :P
var scrollable = playerlist.scrollHeight() < playerlist.height();
var scrollable = playerlist.scrollHeight() > playerlist.height();
upbtn.toggle(scrollable);
downbtn.toggle(scrollable);
};