Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit d99b506

Browse files
martinjezekbtford
authored andcommitted
docs(tutorial): fix linked files to bower_components folder
Closes #6960
1 parent fef0cfc commit d99b506

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/content/tutorial/step_00.ngdoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ __`app/index.html`:__
8484
<head>
8585
<meta charset="utf-8">
8686
<title>My HTML File</title>
87+
<link rel="stylesheet" href="../bower_components/bootstrap/dist/css/bootstrap.css">
8788
<link rel="stylesheet" href="css/app.css">
88-
<link rel="stylesheet" href="css/bootstrap.css">
89-
<script src="lib/angular/angular.js"></script>
89+
<script src="../bower_components/angular/angular.js"></script>
9090
</head>
9191
<body>
9292

@@ -114,7 +114,7 @@ __`app/index.html`:__
114114

115115
* AngularJS script tag:
116116

117-
<script src="lib/angular/angular.js">
117+
<script src="../bower_components/angular/angular.js"></script>
118118

119119
This code downloads the `angular.js` script and registers a callback that will be executed by the
120120
browser when the containing HTML page is fully downloaded. When the callback is executed, Angular

0 commit comments

Comments
 (0)