Home | History | Annotate | Download | only in webapp

Lines Matching refs:mousePos

1279    * @param {number} mousePos The mouse x- or y-coordinate
1283 var computeDelta = function(mousePos, size) {
1285 if (mousePos >= size - threshold) {
1286 return 1 + 5 * (mousePos - (size - threshold)) / threshold;
1287 } else if (mousePos <= threshold) {
1288 return -1 - 5 * (threshold - mousePos) / threshold;