mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-12-22 12:02:46 +00:00
4eb9c0efa8
- Add SVG Inline Loader for Webpack. This allows SVG files to be imported. - Update the Webpack and test configurations to use the new loader. - Scope the ESLint rules down to just JavaScript files so that linting isn't attempted on the SVG. Bug: T165036 Change-Id: I00bccff4c3167975c19d577be6343dcaca7ddb2d
18 lines
678 B
XML
18 lines
678 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="0" height="0">
|
|
<defs>
|
|
<clippath id="mwe-popups-mask">
|
|
<polygon points="0 8, 10 8, 18 0, 26 8, 1000 8, 1000 1000, 0 1000"/>
|
|
</clippath>
|
|
<clippath id="mwe-popups-mask-flip">
|
|
<polygon points="0 8, 274 8, 282 0, 290 8, 1000 8, 1000 1000, 0 1000"/>
|
|
</clippath>
|
|
<clippath id="mwe-popups-landscape-mask">
|
|
<polygon points="0 8, 174 8, 182 0, 190 8, 1000 8, 1000 1000, 0 1000"/>
|
|
</clippath>
|
|
<clippath id="mwe-popups-landscape-mask-flip">
|
|
<polygon points="0 0, 1000 0, 1000 242, 190 242, 182 250, 174 242, 0 242"/>
|
|
</clippath>
|
|
</defs>
|
|
</svg>
|