Mousewheel working

This commit is contained in:
Max Lynch
2013-10-24 22:05:48 -05:00
parent e77f041391
commit 94ee9e98f9
2 changed files with 2 additions and 2 deletions

View File

@ -99,7 +99,7 @@
if(newY > 0) {
newY = 0;
} else if (newY < -maxY) {
newY = maxY;
newY = -maxY;
}
this.scrollTo(0, newY, 0);