mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 10:37:59 +01:00
Use the wrapped object for completion of XPCNativeWrappers
This commit is contained in:
@@ -149,6 +149,8 @@ liberator.Completion = function () //{{{
|
||||
// Things we can dereference
|
||||
if (["object", "string", "function"].indexOf(typeof obj) == -1)
|
||||
continue;
|
||||
if (/^\[XPCNativeWrapper /.test(obj))
|
||||
obj = obj.wrappedJSObject;
|
||||
|
||||
for (let [k, v] in this.iter(obj))
|
||||
compl.push([k, liberator.template.highlight(v, true)]);
|
||||
|
||||
Reference in New Issue
Block a user