mirror of
https://github.com/facebook/react.git
synced 2026-02-25 13:13:03 +00:00
Update links to use https:// where it is supported. There's probably a lot more that could be fixed, but these are the core ones I found (especially the download links in order to prevent MITM attacks). Note that there are some fb.me links that will redirect to http:// even while accessed over https://, but this seemed like the best way to fix those for now. NOTE: Only non-third-party files were modified. There are references to http:// URLs in vendored/third-party files, but seems appropriate to fix upstream for those rather than editing the files. Also, copy one image locally to the blog, as it was hotlinking to a site that did not support https://. Last, use youtube-nocookie.com instead of youtube.com for video embeds, as the former doesn't try to set a cookie on load (privacy enhancement).
34 lines
1.1 KiB
HTML
34 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv='Content-type' content='text/html; charset=utf-8'>
|
|
<title>Basic Example with Precompiled JSX</title>
|
|
<link rel="stylesheet" href="../shared/css/base.css" />
|
|
</head>
|
|
<body>
|
|
<h1>Basic Example with Precompiled JSX</h1>
|
|
<div id="container">
|
|
<p>
|
|
If you can see this, React is not running. Try running:
|
|
</p>
|
|
<pre>npm install -g react-tools
|
|
cd examples/basic-jsx-precompile/
|
|
jsx . build/</pre>
|
|
</div>
|
|
<h4>Example Details</h4>
|
|
<p>This is written with JSX in a separate file and precompiled to vanilla JS by running:</p>
|
|
<pre>npm install -g react-tools
|
|
cd examples/basic-jsx-precompile/
|
|
jsx . build/</pre>
|
|
<p>
|
|
Learn more about React at
|
|
<a href="https://facebook.github.io/react" target="_blank">facebook.github.io/react</a>.
|
|
</p>
|
|
<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/example.js"></script>
|
|
</body>
|
|
</html>
|