mateatslc
mateatslc
How about something like this? ``` import logoSvgString from './assets/logo.svg?raw'; const fragment = document.createDocumentFragment(); const logoFragment = document .createRange() .createContextualFragment(logoSvgString); fragment.appendChild(logoFragment); document.body.appendChild(fragment); ``` Will not work for the `` case...
@everdimension is your solution open source and/or available on _The Internets_?
I would appreciate it ;)
@everdimension Awesome, thank you! Created a PR to amend your README ;)
Just a wild guess: icons with custom names won't work?
Confirmed. Works as expected with original icon names. Want a PR with updated readme?
Not for names, but looks like every glyph comes with a unique `uid` field that stays the same even if I set custom names. Take this 'config.json': ``` json {...
I put `unsaved-warning-clear` on my button-looking `` tags, works alright for me. Give it a shot.
see if this can help: https://github.com/ncuillery/angular-breadcrumb/issues/157#issuecomment-275435735
`ui-sref` style dynamic links seem to be broken currently, not sure if there is anything in the works to fix them... I came up with a workaround where I default...