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
Here's what I think is happening here: compute keeps an eye out for when .attr() is called on an observable in its value function, but it's not recognizing when .each() is called (probably because .each() calls .attr() on different things each time). More later, hopefully after fixing.
This works now by using can.Observe.keys( observe ) -> [key1, key2].
When you call the keys function, it indicates that you are reading from a special __keys property. When you add or remove properties to the observe, a __keys event is triggered.
__keys is now a reserved property on can.Observes.
If I have a compute like:
It should produce change events when I add or remove properties to obs.
The text was updated successfully, but these errors were encountered: