svg.easing.js
svg.easing.js copied to clipboard
Added closing semicolon.
I was receiving errors after concatenating several JS files (including this one) and found the source issue to be a missing closing semicolon in this file.
The errors:
Uncaught TypeError: (intermediate value)(intermediate value)(intermediate value)(intermediate value)(intermediate value)(intermediate value)(intermediate value)(intermediate value)(intermediate value)(intermediate value)(intermediate value)(intermediate value)(intermediate value)(intermediate value)(intermediate value)(intermediate value)(intermediate value)(intermediate value)(intermediate value)(intermediate value)(intermediate value)(intermediate value)(intermediate value)(intermediate value)(intermediate value)(intermediate value)(intermediate value)(intermediate value)(intermediate value)(intermediate value) is not a function
main.js:1 Uncaught TypeError: Cannot read property 'quintInOut' of undefined
I rather think, that your next minimized file starts with something like this:
(function(){ ... })
so THERE is a semicolon missing in front. Not at the end of our file!