ded / morpheus

A Brilliant Animator
504 stars 57 forks source link

NaN when animating rgb() color value #58

Open varrg opened 9 years ago

varrg commented 9 years ago

testcase: http://jsfiddle.net/qz5jcoaw/

seems to originate from https://github.com/ded/morpheus/blob/master/morpheus.js#L369

possible fix:

change: (https://github.com/ded/morpheus/blob/master/morpheus.js#L367)

typeof tmp == 'string' && tmp.charAt(0) == '#' ?

to:

typeof tmp == 'string' && rgbOhex.test(tmp) ?