Fix bug with mouse wheel

This commit is contained in:
etnassoft 2013-03-21 11:21:20 +01:00
parent 9d6728e3ff
commit 4f49b0fa7f

View File

@ -90,6 +90,10 @@
$this.scrollTop(0);
}
if(scrollbar_y_top >= container_height - scrollbar_y_height) {
scrollbar_y_top = container_height - scrollbar_y_height;
}
$scrollbar_x.css({left: scrollbar_x_left + $this.scrollLeft(), bottom: scrollbar_x_bottom - $this.scrollTop(), width: scrollbar_x_width});
$scrollbar_y.css({top: scrollbar_y_top + $this.scrollTop(), right: scrollbar_y_right - $this.scrollLeft(), height: scrollbar_y_height});
};