rename files

This commit is contained in:
JFH
2021-05-12 21:05:34 +02:00
parent bfd83a55cb
commit fb8f52bcfa
3 changed files with 2 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
const supportsSvg = function () {
return Boolean(document.createElementNS && document.createElementNS('http://www.w3.org/2000/svg', 'svg').createSVGRect);
};
if (!supportsSvg()) {
window.location = './browser-not-supported.html';
}
export {};