Disable scollDelta until less buggy
This commit is contained in:
parent
85d1eddedd
commit
56d72715be
@ -442,7 +442,8 @@ function loopStart () {
|
|||||||
window.onload = loopStart;
|
window.onload = loopStart;
|
||||||
|
|
||||||
window.addEventListener('mousewheel', function (e) {
|
window.addEventListener('mousewheel', function (e) {
|
||||||
scrollDelta = scrollDelta + ((e.deltaY / 100) * 3);
|
// scrollDelta = scrollDelta + ((e.deltaY / 100) * 3);
|
||||||
|
// FIXME: buggy :(
|
||||||
});
|
});
|
||||||
|
|
||||||
// TODO: use jquery PEP to allow user to "pull" at a point elastically
|
// TODO: use jquery PEP to allow user to "pull" at a point elastically
|
||||||
|
Loading…
Reference in New Issue
Block a user