mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 12:20:20 +01:00
I find myself often using (modified) examples to test in IE and it's a pain to have to add the shims in every time. Might as well just add them in always.
22 lines
933 B
HTML
22 lines
933 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<title>jQuery Integration</title>
|
|
<link rel="stylesheet" href="thirdparty/bootstrap.min.css" type="text/css" />
|
|
<link rel="stylesheet" href="css/example.css" type="text/css" />
|
|
</head>
|
|
<body>
|
|
<div id="jqueryexample"></div>
|
|
<script src="../shared/thirdparty/es5-shim.min.js"></script>
|
|
<script src="../shared/thirdparty/es5-sham.min.js"></script>
|
|
<script src="../shared/thirdparty/console-polyfill.js"></script>
|
|
<script src="../../build/react.js"></script>
|
|
<script src="../../build/JSXTransformer.js"></script>
|
|
<script type="text/javascript" src="../shared/thirdparty/jquery.min.js" charset="utf-8"></script>
|
|
<script type="text/javascript" src="thirdparty/bootstrap.min.js" charset="utf-8"></script>
|
|
<script type="text/jsx" src="js/app.js"></script>
|
|
</body>
|
|
</html>
|