Removes duplication of head tag in example (#2648)
This commit is contained in:
parent
f837330eaf
commit
35d8695752
|
@ -1,7 +1,7 @@
|
||||||
<!-- #docregion -->
|
<!-- #docregion -->
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Dependency Injection</title>
|
<title>Dependency Injection</title>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
@ -19,8 +19,7 @@
|
||||||
System.import('app').catch(function(err){ console.error(err); });
|
System.import('app').catch(function(err){ console.error(err); });
|
||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<my-app>Loading my-app ...</my-app>
|
<my-app>Loading my-app ...</my-app>
|
||||||
<my-providers>Loading my-providers ...</my-providers>
|
<my-providers>Loading my-providers ...</my-providers>
|
||||||
|
|
Loading…
Reference in New Issue