Skip to content

Commit 1061051

Browse files
committed
change header format
1 parent 57e63d7 commit 1061051

File tree

4 files changed

+19
-8
lines changed

4 files changed

+19
-8
lines changed

design-patterns/decorator.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<!doctype html>
2-
<html>
2+
<html lang="en">
33
<head>
44
<title>JavaScript Patterns</title>
5-
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
5+
<meta charset="utf-8">
66
</head>
77
<body>
88
<script>

design-patterns/facade.html

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,19 @@
1-
var mobileEvent = {
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<title>JavaScript Patterns</title>
5+
<meta charset="utf-8">
6+
</head>
7+
<body>
8+
<script>
9+
var mobileEvent = {
210
// ...
311
stop: function (e) {
412
e.preventDefault();
513
e.stopPropagation();
614
}
715
// ...
8-
};
16+
};
17+
</script>
18+
</body>
19+
</html>

design-patterns/factory.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<!doctype html>
2-
<html>
2+
<html lang="en">
33
<head>
44
<title>JavaScript Patterns</title>
5-
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
5+
<meta charset="utf-8">
66
</head>
77
<body>
88
<script>

design-patterns/observer.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<!doctype html>
2-
<html>
2+
<html lang="en">
33
<head>
44
<title>JavaScript Patterns</title>
5-
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
5+
<meta charset="utf-8">
66
</head>
77
<body>
88
<script>

0 commit comments

Comments
 (0)