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

And actually commit the change referenced 2 commits ago. :(

This commit is contained in:
Kris Maglione
2008-11-20 21:28:56 +00:00
parent ce88c8918d
commit 5b9cd6e514

View File

@@ -164,7 +164,7 @@ function Completion() //{{{
let orig = obj;
if (obj.wrappedJSObject)
obj = obj.wrappedJSObject;
compl.push([v for (v in this.iter(obj)) if (v[0] in orig)])
compl.push([v for (v in this.iter(obj)) if (v[0] in orig || orig[v[0]])])
// And if wrappedJSObject happens to be available,
// return that, too.
if (orig.wrappedJSObject)