We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65c258a commit 3f31ec4Copy full SHA for 3f31ec4
examples/basic-jsx-harmony/index.html
@@ -25,7 +25,7 @@ <h4>Example Details</h4>
25
</p>
26
<script src="../../build/react.js"></script>
27
<script src="../../build/JSXTransformer.js"></script>
28
- <script type="text/jsx;harmony">
+ <script type="text/jsx;harmony=true">
29
/**
30
* @jsx React.DOM
31
*/
vendor/browser-transforms.js
@@ -184,7 +184,7 @@ runScripts = function() {
184
185
jsxScripts.forEach(function(script) {
186
var options;
187
- if (script.type.indexOf('harmony') !== -1) {
+ if (script.type.indexOf('harmony=true') !== -1) {
188
options = {
189
harmony: true
190
};
0 commit comments