angular-svg-base
angular-svg-base copied to clipboard
Why doesn't this module support <use xlink:href="#path"></use> syntax?
I see in the description that this module purposefully handles only FuncIRI notation. Why is that? The following syntax is quite popular:
<svg>
<use xlink:href="#path"></use>
</svg>
And it too suffers from the firefox/<base>
bug.
Basically I had to implement my own directive which does exactly the same thing as your module, but for xlink:href
attribute. Are there some valid reasons for not supporting it?
@everdimension is your solution open source and/or available on The Internets?
@mateatslc not right now, but I can publish it
I would appreciate it ;)
@mateatslc I've published the directive in npm and bower: https://github.com/everdimension/angular-svg-base-fix
If you have any issues let me know
@everdimension Awesome, thank you! Created a PR to amend your README ;)