Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 9e29d5f

Browse files
committed
fix script tags in index.html
1 parent 262c07b commit 9e29d5f

File tree

1 file changed

+11
-11
lines changed
  • public/docs/_examples/dependency-injection/dart/web

1 file changed

+11
-11
lines changed
Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
<!-- #docregion -->
1+
<!--#docregion-->
22
<!DOCTYPE html>
33
<html>
4-
<head>
5-
<title>Dependency Injection</title>
6-
<meta name="viewport" content="width=device-width, initial-scale=1">
7-
<link rel="stylesheet" href="styles.css">
8-
<script type="application/dart" src="main.dart"></script>
9-
</head>
10-
<body>
11-
<my-app>Loading my-app ...</my-app>
12-
<my-providers>Loading my-providers ...</my-providers>
13-
</body>
4+
<head>
5+
<title>Dependency Injection</title>
6+
<link rel="stylesheet" href="styles.css">
147

8+
<script defer src="main.dart" type="application/dart"></script>
9+
<script defer src="packages/browser/dart.js"></script>
10+
</head>
11+
<body>
12+
<my-app>Loading...</my-app>
13+
<my-providers>Loading my-providers ...</my-providers>
14+
</body>
1515
</html>

0 commit comments

Comments
 (0)