morpheus icon indicating copy to clipboard operation
morpheus copied to clipboard

NaN when animating rgb() color value

Open varrg opened this issue 10 years ago • 0 comments

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) ?

varrg avatar Apr 09 '15 09:04 varrg