Welcome to mirror list, hosted at ThFree Co, Russian Federation.

svg.js « polyfills « commons « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 92a8b03fbb427241776c44786d9be57859395cda (plain)
1
2
3
4
5
6
7
8
9
10
11
/**
 * polyfill support for external SVG file references via <use xlink:href>
 * @what polyfill support for external SVG file references via <use xlink:href>
 * @why This is used in our GitLab SVG icon library
 * @browsers Internet Explorer 11
 * @see https://caniuse.com/#feat=mdn-svg_elements_use_external_uri
 * @see https//css-tricks.com/svg-use-external-source/
 */
import svg4everybody from 'svg4everybody';

svg4everybody();