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

Update tutorial documentation step_00.ngdoc #6960

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/content/tutorial/step_00.ngdoc
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ __`app/index.html`:__
<head>
<meta charset="utf-8">
<title>My HTML File</title>
<link rel="stylesheet" href="../bower_components/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" href="css/app.css">
<link rel="stylesheet" href="css/bootstrap.css">
<script src="lib/angular/angular.js"></script>
<script src="../bower_components/angular/angular.js"></script>
</head>
<body>

Expand Down Expand Up @@ -114,7 +114,7 @@ __`app/index.html`:__

* AngularJS script tag:

<script src="lib/angular/angular.js">
<script src="../bower_components/angular/angular.js"></script>

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