1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 22:12:25 +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; let orig = obj;
if (obj.wrappedJSObject) if (obj.wrappedJSObject)
obj = 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, // And if wrappedJSObject happens to be available,
// return that, too. // return that, too.
if (orig.wrappedJSObject) if (orig.wrappedJSObject)