mirror of
https://github.com/facebook/react.git
synced 2026-02-25 13:13:03 +00: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
978 B
HTML
22 lines
978 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>jQuery Mobile React Example</title>
|
|
<link rel="stylesheet" href="//code.jquery.com/mobile/1.4.0/jquery.mobile-1.4.0.min.css" />
|
|
<link rel="stylesheet" href="//demos.jquerymobile.com/1.4.0/_assets/css/jqm-demos.css" />
|
|
</head>
|
|
<body class="ui-mobile-viewport ui-overlay-a">
|
|
<div id="content"></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="//code.jquery.com/jquery-1.10.2.min.js"></script>
|
|
<script src="//code.jquery.com/mobile/1.4.0/jquery.mobile-1.4.0.min.js"></script>
|
|
<script src="../../build/react.js"></script>
|
|
<script type="text/javascript" src="js/app.js"></script>
|
|
</body>
|
|
</html>
|