1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-06 18:45:47 +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() {

View File

@@ -972,7 +972,11 @@ var Util = Module("Util", XPCOM([Ci.nsIObserver, Ci.nsISupportsWeakReference]),
object = Iterator(object);
hasValue = false;
}
for (let i in object) {
let keyIter = object;
if ("__iterator__" in object && !callable(object.__iterator__))
keyIter = keys(object)
for (let i in keyIter) {
let value = <![CDATA[<no value>]]>;
try {
value = object[i];