What's the recommended way to inspect a custom object? I'd normally
use a console.log() call but I cannot access the full property list:

- %s displays [object Object]
- %o only displays the first property:

    Object { modal=true,  more...}

    ... and when I click on "more" I'm redirected to the DOM tab when
I'm informed that the object has no properties (probably because it's
not a DOM node).

Bug? Feature?

I'm creating the object with the object literal:

var foo = {
    bar: 1,
    gee: true
};

-- 
You received this message because you are subscribed to the Google Groups 
"Firebug" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/firebug?hl=en.

Reply via email to