1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-06 00:34:11 +01:00

RangeFind highlight cleanup stuff and stuff.

This commit is contained in:
Kris Maglione
2011-10-17 21:11:55 -04:00
parent 3ef14e8c3c
commit e75de734ed
4 changed files with 22 additions and 5 deletions

View File

@@ -48,6 +48,16 @@ var RangeFinder = Module("rangefinder", {
prefs.safeSet("accessibility.typeaheadfind", false);
},
cleanup: function cleanup() {
for (let doc in util.iterDocuments()) {
let find = overlay.getData(doc, "range-find", null);
if (find)
find.highlight(true);
overlay.setData(doc, "range-find", null);
}
},
get commandline() this.modules.commandline,
get modes() this.modules.modes,
get options() this.modules.options,
@@ -719,7 +729,6 @@ var RangeFind = Class("RangeFind", {
this.range = range;
this.document = range.startContainer.ownerDocument;
this.window = this.document.defaultView;
this.docShell = util.docShell(this.window);
if (this.selection == null)
return false;
@@ -727,6 +736,8 @@ var RangeFind = Class("RangeFind", {
this.save();
},
docShell: Class.Memoize(function () util.docShell(this.window)),
intersects: function (range) RangeFind.intersects(this.range, range),
save: function save() {