This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ angular.module('tutorials', [])
43
43
'<a href="http://angular.github.io/angular-phonecat/step-{{step}}/app">Step {{step}} Live Demo</a>.</p>\n' +
44
44
'</div>\n' +
45
45
'<p>The most important changes are listed below. You can see the full diff on ' +
46
- '<a ng-href="https://github.com/angular/angular-phonecat/compare/step-{{step ? (step - 1): \'0~1\'}}...step-{{step}}">GitHub</a>\n' +
46
+ '<a ng-href="https://github.com/angular/angular-phonecat/compare/step-{{step ? (step - 1): \'0~1\'}}...step-{{step}}" title="See diff on Github" >GitHub</a>\n' +
47
47
'</p>'
48
48
} ;
49
49
} ) ;
Original file line number Diff line number Diff line change 76
76
< div class ="row ">
77
77
< div class ="col-md-9 header-branding ">
78
78
< a class ="brand navbar-brand " href ="http://angularjs.org ">
79
- < img width ="117 " height ="30 " class ="logo " ng-src ="img/angularjs-for-header-only.svg ">
79
+ < img width ="117 " height ="30 " class ="logo " alt =" Link to Angular JS Homepage " ng-src ="img/angularjs-for-header-only.svg ">
80
80
</ a >
81
81
< ul class ="nav navbar-nav ">
82
82
< li class ="divider-vertical "> </ li >
@@ -223,7 +223,7 @@ <h4 class="search-results-group-heading">{{ key }}</h4>
223
223
Super-powered by Google ©2010-2015
224
224
( < a id ="version "
225
225
ng-href ="https://github.com/angular/angular.js/blob/master/CHANGELOG.md#{{versionNumber}} "
226
- ng-bind-template ="v{{version}} ">
226
+ ng-bind-template ="v{{version}} " title =" Changelog of this version of Angular JS " >
227
227
</ a >
228
228
)
229
229
</ p >
Original file line number Diff line number Diff line change @@ -194,7 +194,7 @@ Conditionally showing and hiding things using jQuery is a common pattern in othe
194
194
`ng-show` (and `ng-hide`) conditionally show and hide elements based on boolean expressions.
195
195
Describe the conditions for showing and hiding an element in terms of `$scope` variables:
196
196
197
- <div ng-show="!loggedIn">Click <a href="#/login">here</a> to log in</div>
197
+ <div ng-show="!loggedIn"><a href="#/login">Click here to log in</a> </div>
198
198
199
199
Note also the counterpart `ng-hide` and similar `ng-disabled`.
200
200
Note especially the powerful `ng-switch` that should be used instead of several mutually exclusive `ng-show`s.
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ npm install
31
31
32
32
To see the app running in a browser, open a *separate* terminal/command line tab or window, then
33
33
run `npm start` to start the web server. Now, open a browser window for the app and navigate to
34
- <a href="http://localhost:8000/app/" target="_blank">`http://localhost:8000/app/`</a>
34
+ <a href="http://localhost:8000/app/" target="_blank" title="Open app on localhost" >`http://localhost:8000/app/`</a>
35
35
36
36
Note that if you already ran the master branch app prior to checking out step-0, you may see the cached
37
37
master version of the app in your browser window at this point. Just hit refresh to re-load the page.
You can’t perform that action at this time.
0 commit comments