Browse Source

fixed issue where scrolling stopped working

master
mort 8 years ago
parent
commit
4768c5f94e
2 changed files with 3 additions and 3 deletions
  1. 2
    2
      data/onload.js
  2. 1
    1
      package.json

+ 2
- 2
data/onload.js View File

var conf = { var conf = {
scroll_speed: 0.4,
scroll_speed: 0.3,
scroll_speed_fast: 1.1, scroll_speed_fast: 1.1,
scroll_friction: 0.8, scroll_friction: 0.8,
chars: "SANOTEHUCP", chars: "SANOTEHUCP",
scroll.velocity *= conf.scroll_friction; scroll.velocity *= conf.scroll_friction;
} }


if (tdiff < 100 && scroll.velocity < -0.1 && scroll.velocity > 0.1) {
if (tdiff < 100 && scroll.velocity > -0.1 && scroll.velocity < 0.1) {
scroll.velocity = 0; scroll.velocity = 0;
cancelAnimationFrame(scroll.raf); cancelAnimationFrame(scroll.raf);
scroll.raf = null; scroll.raf = null;

+ 1
- 1
package.json View File

{ {
"title": "Mouseless", "title": "Mouseless",
"name": "mouseless", "name": "mouseless",
"version": "0.2.4",
"version": "0.2.5",
"description": "For a mouseless future.", "description": "For a mouseless future.",
"main": "index.js", "main": "index.js",
"author": "Martin Dørum Nygaard", "author": "Martin Dørum Nygaard",

Loading…
Cancel
Save