Hi! I've got a problem:
- got an element with a morph: this.elem.set('morph',
{ transition:'sine:out' })
- later, set an event: this.elem.get('morph').addEvent
('onComplete',function(){ ... })
- later, I want to change, say, the morph transition, but if I do it
with get or set, morph will instantiate again, and I'll lose the
onComplete event!So, is there a way to change props like transition and duration without re-instantiating the fx?
