transform icon indicating copy to clipboard operation
transform copied to clipboard

Uncaught TypeError: Cannot read property 'length' of undefined

Open dknight opened this issue 11 years ago • 3 comments

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

dknight avatar Mar 12 '13 09:03 dknight

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.

KBorders01 avatar Apr 16 '13 23:04 KBorders01

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 [email protected] 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

yuxhuang avatar Apr 18 '13 13:04 yuxhuang

Thanks yuxhuang!

KBorders01 avatar Apr 18 '13 16:04 KBorders01