Skip to content
This repository has been archived by the owner on Dec 29, 2022. It is now read-only.

Commit

Permalink
bindings are always inspectable/serializable.
Browse files Browse the repository at this point in the history
  • Loading branch information
sorvell committed Apr 8, 2014
1 parent 04112c5 commit a865872
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions elements/x-inspector/reflection.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@ function reflectProperty(element, name, meta) {
if (element.publish && element.publish[name] === undefined) {
return;
}
var v = element[name];
if (v !== null
&& v !== undefined
var v = element[name], binding = Bindings.getBinding(element, name);
if ((binding || (v !== null && v !== undefined))
&& typeof v !== 'function'
&& typeof v !== 'object'
//&& element.propertyIsEnumerable(k)
Expand Down

0 comments on commit a865872

Please sign in to comment.