1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-19 13:55:47 +01:00

Fix some subtle rehashing bugs.

--HG--
branch : bootstrapped
This commit is contained in:
Kris Maglione
2010-12-25 15:54:37 -05:00
parent d7d2affbfd
commit 1653ff509d
26 changed files with 97 additions and 71 deletions

View File

@@ -7,7 +7,7 @@
/** @scope modules */
/** @instance rangefinder */
const RangeFinder = Module("rangefinder", {
var RangeFinder = Module("rangefinder", {
init: function () {
this.lastFindPattern = "";
},
@@ -251,7 +251,7 @@ const RangeFinder = Module("rangefinder", {
* documents, and represents a major detriment to productivity where
* large amounts of data are concerned (e.g., for API documents).
*/
const RangeFind = Class("RangeFind", {
var RangeFind = Class("RangeFind", {
init: function (matchCase, backward, elementPath, regexp) {
this.window = Cu.getWeakReference(window);
this.baseDocument = Cu.getWeakReference(content.document);