1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-08-05 23:07:27 +02:00

feat: Add ES6 polyfill to examples page (#729)

* feat: Add ES6 polyfill to examples page

* Fixes issue with IE11 simply not displaying anything on load due to missing `Symbol` shim

* Move script to the bottom before build.prod.js file
This commit is contained in:
Craig Michael Thompson
2017-04-19 17:03:02 +01:00
committed by Ian Storm Taylor
parent 6f9e8bc5ec
commit f39c4327fe

View File

@@ -8,6 +8,7 @@
</head> </head>
<body> <body>
<main></main> <main></main>
<script src="https://cdn.polyfill.io/v2/polyfill.js?features=es6"></script>
<script src="build.prod.js"></script> <script src="build.prod.js"></script>
</body> </body>
</html> </html>