You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 29, 2019. It is now read-only.
Do we mention paths are observable if you explicitly watch them in the
observe block?
On Apr 29, 2014 2:26 PM, "Arthur Evans" notifications@github.com wrote:
We observe only the top-level identifier, not its properties.
For example, in: {{ { thing1: foo, thing2: bar } }} we observe foo and barbut not the properties of
foo and bar.
This may lead to unexpected behavior when using a filter like tokenList,
which acts on the object's (unobserved) properties.
Also we need to add array access to the list of allowable syntax in
expression.
For example: thing[field]. In this case, we observe... (fill in the
blank).
—
Reply to this email directly or view it on GitHubhttps://github.com//issues/392
.
We observe only the top-level identifier, not its properties.
For example, in:
{{ { thing1: foo, thing2: bar } }}
we observefoo
andbar
but not the properties offoo
andbar
.This may lead to unexpected behavior when using a filter like
tokenList
, which acts on the object's (unobserved) properties.For example:
thing[field]
. In this case, we observe... (fill in the blank).The text was updated successfully, but these errors were encountered: