heygrady / transform

jQuery 2d transformation plugin
437 stars 87 forks source link

Uncaught TypeError: Cannot read property 'length' of undefined #45

Open dknight opened 11 years ago

dknight commented 11 years ago

When trying to use animate function with transformations. Like $("#foo").animate({ scale: 1.5 }, 1000);

KBorders01 commented 11 years ago

This issue looks like it is specific to scale, which hits the default $.fx.multipleValueStep function. This function tries to read fx.values, which is undefined, hence causing the crash.

yuxhuang commented 11 years ago

I have a pull request to fix the 1.8 animation issues with a tweener implementation. It should be stable enough for use. — Sent from Mailbox for iPhone

On Tue, Apr 16, 2013 at 7:27 PM, KBorders01 notifications@github.com wrote:

As a work-around, you can use a matrix to apply a scale, and that should animate properly.

Reply to this email directly or view it on GitHub: https://github.com/heygrady/transform/issues/45#issuecomment-16478327

KBorders01 commented 11 years ago

Thanks yuxhuang!