diff --git a/editor/browser-not-supported.html b/editor/browser-not-supported.html index e1097e95..6ec7af4e 100644 --- a/editor/browser-not-supported.html +++ b/editor/browser-not-supported.html @@ -1,10 +1,10 @@ - + - + Browser does not support SVG | SVG-edit - -

Sorry, but your browser does not support SVG. Below is a list of alternate browsers and versions that support SVG and SVG-edit (from caniuse.com).

-

Try the latest version of Firefox, Chrome, Safari, Opera or Internet Explorer.

- +

Sorry, but your browser does not support SVG. Below is a list of + alternate browsers and versions that support SVG and SVG-edit + (from caniuse.com). +

+

Try the latest version of + Firefox, + Chrome, + Safari, + Opera or + Internet Explorer. +

- +
diff --git a/editor/browser-not-supported.js b/editor/browser-not-supported.js deleted file mode 100644 index b87ec308..00000000 --- a/editor/browser-not-supported.js +++ /dev/null @@ -1,8 +0,0 @@ -/* eslint-disable no-var */ -/* globals $ */ -var viewportHeight = window.innerHeight || ($(window).height() - 140); -var iframe = document.createElement('iframe'); -iframe.style.width = '100%'; -iframe.style.height = viewportHeight + 'px'; -iframe.src = 'http://caniuse.com/#cats=SVG'; -document.body.appendChild(iframe);