Skip to content

Commit

Permalink
docs: Bring in polyfills for IE11 📚
Browse files Browse the repository at this point in the history
  • Loading branch information
mrchief committed Mar 28, 2020
1 parent a6c63b5 commit 9181c26
Showing 1 changed file with 18 additions and 12 deletions.
30 changes: 18 additions & 12 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<title>React Dropdown Tree Select Demo</title>
<link
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous"
/>
</head>

<head>
<title>React Dropdown Tree Select Demo</title>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous">
</head>

<body>
<div id="app"></div>
<script src="bundle.js"></script>
</body>

</html>
<body>
<div id="app"></div>
<script
crossorigin="anonymous"
src="https://polyfill.io/v3/polyfill.min.js?features=Array.prototype.find%2CPromise"
></script>
<script src="bundle.js"></script>
</body>
</html>

0 comments on commit 9181c26

Please sign in to comment.