angular-svg-base
angular-svg-base copied to clipboard
Not working in IE.
Noticed the URL isn't being rewritten in IE.
If your url is #test-url then Chrome will see it as #test-url but IE sees it as "#test-url".
So when you do:
match[1].indexOf('#')
indexOf will be 0 in Chrome / Firefox but 1 in IE due to IE seeing " as the character at 0.