1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-27 01:12:27 +01:00

Fix typo.

This commit is contained in:
Kris Maglione
2011-10-09 12:02:17 -04:00
parent cd9605af3b
commit 449ff06fde

View File

@@ -786,7 +786,7 @@ var Buffer = Module("Buffer", {
* @param {boolean} offScreen If true, include only off-screen elements. @optional
*/
findJump: function findJump(arg, count, reverse, offScreen) {
let { options } = this.modules;
let { marks, options } = this.modules;
const FUDGE = 10;
@@ -844,7 +844,6 @@ var Buffer = Module("Buffer", {
let next = current + count;
if (next < 0 || next >= frames.length)
util.dactyl.beep();
dactyl.beep();
next = Math.constrain(next, 0, frames.length - 1);
// focus next frame and scroll into view