mirror of
https://github.com/ianstormtaylor/slate.git
synced 2025-02-13 11:44:55 +01:00
e7b4020ed2
* Include Array.prototype.includes polyfill In https://github.com/ianstormtaylor/slate/commit/070a700 the `default` feature set was added and the `Array.prototype.includes` feature removed from the polyfill.io request. I think it's great to include the `default` feature set, but, `Array.prototype.includes` is not included in the `default` set, so we have to explicitly request it. IE 11 needs an `Array.prototype.includes` polyfill in order for the examples to work. * Update dev.html * Update index.html
16 lines
533 B
HTML
16 lines
533 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Slate</title>
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,400i,700,700i&subset=latin-ext" >
|
|
<link rel="stylesheet" href="index.css">
|
|
</head>
|
|
<body>
|
|
<main></main>
|
|
<script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=default,es6,es7"></script>
|
|
<script src="build.prod.js"></script>
|
|
</body>
|
|
</html>
|