canjs / can-stache-animate

Animations and How-Tos for Animating in Stache
https://www.npmjs.com/package/can-stache-animate
MIT License
1 stars 1 forks source link

property changes don't seem to call RHS methods #10

Closed mickmcgrath13 closed 7 years ago

mickmcgrath13 commented 7 years ago

when doing something like:

<div (. prop)="*animationsModule.default.animations.customAnimation" />

then in the viewmodel

someMethod(){
  this.prop = "newVal"
}

customAnimation doesn't seem to fire. Only by manually dispatching an event will the RHS execute.