Skip to content

Commit dee6726

Browse files
committed
change http-equiv with charset
1 parent 3ee65cc commit dee6726

10 files changed

Lines changed: 10 additions & 9 deletions

File tree

examples/basic-click-counter/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4+
<meta charset="utf-8">
45
<title>Basic Example with Click Counter</title>
5-
<meta http-equiv='Content-type' content='text/html; charset=utf-8'>
66
<script src="../../build/react.js"></script>
77
<script src="../../build/JSXTransformer.js"></script>
88
<script type="text/jsx">

examples/basic-commonjs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<meta http-equiv='Content-type' content='text/html; charset=utf-8'>
4+
<meta charset="utf-8">
55
<title>Basic CommonJS Example with Browserify</title>
66
<link rel="stylesheet" href="../shared/css/base.css" />
77
</head>

examples/basic-jsx-external/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<meta http-equiv='Content-type' content='text/html; charset=utf-8'>
4+
<meta charset="utf-8">
55
<title>Basic Example with External JSX</title>
66
<link rel="stylesheet" href="../shared/css/base.css" />
77
</head>

examples/basic-jsx-harmony/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<meta http-equiv='Content-type' content='text/html; charset=utf-8'>
4+
<meta charset="utf-8">
55
<title>Basic Example with JSX and ES6 features</title>
66
<link rel="stylesheet" href="../shared/css/base.css" />
77
</head>

examples/basic-jsx-precompile/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<meta http-equiv='Content-type' content='text/html; charset=utf-8'>
4+
<meta charset="utf-8">
55
<title>Basic Example with Precompiled JSX</title>
66
<link rel="stylesheet" href="../shared/css/base.css" />
77
</head>

examples/basic-jsx/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<meta http-equiv='Content-type' content='text/html; charset=utf-8'>
4+
<meta charset="utf-8">
55
<title>Basic Example with JSX</title>
66
<link rel="stylesheet" href="../shared/css/base.css" />
77
</head>

examples/basic/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<meta http-equiv='Content-type' content='text/html; charset=utf-8'>
4+
<meta charset="utf-8">
55
<title>Basic Example</title>
66
<link rel="stylesheet" href="../shared/css/base.css" />
77
</head>

examples/quadratic/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<meta http-equiv='Content-type' content='text/html; charset=utf-8'>
4+
<meta charset="utf-8">
55
<title>Quadratic Formula Calculator</title>
66
<link rel="stylesheet" href="../shared/css/base.css" />
77
</head>

examples/server-rendering/webapp/index.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ function react_component($module, $props) {
5555
<!DOCTYPE html>
5656
<html>
5757
<head>
58+
<meta charset="utf-8">
5859
<title>React server rendering example</title>
5960
<script src="static/bundle.js"></script>
6061
</head>

examples/transitions/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<meta http-equiv='Content-type' content='text/html; charset=utf-8'>
4+
<meta charset="utf-8">
55
<title>Example with Transitions</title>
66
<link rel="stylesheet" href="../shared/css/base.css" />
77
<link rel="stylesheet" href="transition.css" />

0 commit comments

Comments
 (0)