Reputation: 67
After Chrome browser got updated to 48.0 version I am facing this issue where I am not able to load my svg editor.In my console window I can find the message "Uncaught TypeError: ia.createSVGPathSegLinetoAbs is not a function " I have followed the suggestions given at this earlier post Alternative for deprecated SVG pathSegList but request someone to please give a detail description of the fix for this issue. Also please suggest me the steps to include pollyfill.js if thats the fix for this issue .
Upvotes: 0
Views: 1182
Reputation: 101938
The instructions on the polyfill page tell you what to do.
Copy the polyfill JS file to your webserver. Then add the script tag to your HTML page (or your SVG file).
<script src="pathseg.js"></script>
Is there some other problem preventing you from doing this?
Upvotes: 2