> I was hoping to power through and figure out where/if the bug might be
> in -Core, but I am not all the way there yet... something with `this`
> binding or somethin'....
In -core:3724,
this.get('tween').start(arguments);
return this;
I _think_ it should be
this.get('tween').start(arguments);
return this.get('tween');
I know on the one hand, this should be in Lighthouse. But on the other
hand, enough people seemed to be saying "not a bug" after the original
post and giving workarounds that I don't know if this is the expected
behavior.
-- Sandy