Skip to content

Commit f7ab389

Browse files
committedDec 31, 2013
added explanations and links to main view
1 parent f5c8c19 commit f7ab389

File tree

2 files changed

+16
-21
lines changed

2 files changed

+16
-21
lines changed
 

‎app/index.html

+3-9
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="utf-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6-
<title>Read the Source: AngularJS</title>
6+
<title>AngularJS Playground</title>
77
<meta name="description" content="">
88
<meta name="viewport" content="width=device-width">
99
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
@@ -18,21 +18,15 @@
1818

1919
<!-- Header -->
2020
<div class="header">
21-
<ul class="nav nav-pills pull-right">
22-
<li class="active"><a ng-href="#">Master</a></li>
23-
<li><a ng-href="#">Dependency Injection</a></li>
24-
<li><a ng-href="#">Digest Cycle</a></li>
25-
<li><a ng-href="#">ng-app</a></li>
26-
</ul>
27-
<h3 class="text-muted">Branches</h3>
21+
<h3 class="text-muted">readthesource</h3>
2822
</div>
2923

3024
<!-- View -->
3125
<div ng-view></div>
3226

3327
<!-- Footer -->
3428
<div class="footer">
35-
<p><a href="https://github.com/readthesource/angularjs">github.com/readthesource</a></p>
29+
<p><a href="https://github.com/readthesource/angularjs-playground">github.com/readthesource/angularjs-playground</a></p>
3630
</div>
3731

3832
</div>

‎app/views/main.html

+13-12
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
11
<div class="jumbotron">
2-
<h1>AngularJS</h1>
3-
<p class="lead">
4-
5-
Learn by reading the source.
6-
</p>
7-
<p><a class="btn btn-lg btn-success" ng-href="#">Start Debugger!</a></p>
2+
<h1>
3+
AngularJS Playground
4+
</h1>
5+
<p>This app is a playground for exploring the internals of AngularJS. Its Git repository includes branches that focus on different aspects of the source code. Each branch has debugger statements included in the source at helpful starting points. </p>
86
</div>
97

108
<div class="row marketing">
11-
<h4>Dependency Injection</h4>
9+
<h4>Hangouts and Group Study</h4>
1210
<p>
13-
Blah blah blah
11+
We hold a Google Hangout on the first Thursday of each month at 7pm Eastern time, open to all. The hangout link is tweeted a few minutes in advance. Be sure to follow <a href="https://twitter.com/readthesource">@readthesource</a>. Please join us if you'd like to participate.
1412
</p>
1513

16-
<h4>Digest Cycle</h4>
14+
<h4>Wiki and Issues</h4>
1715
<p>
18-
Blah blah blah
16+
Between hangouts, we can use the project <a href="https://github.com/readthesource/angularjs-playground/wiki">wiki</a> to annotate pieces of code with explanations and the <a href="https://github.com/readthesource/angularjs-playground/issues">issues</a> for discussion.
1917
</p>
2018

21-
<h4>Bootstrap</h4>
22-
<p>Blah blah blah</p>
19+
<h4>Getting Started</h4>
20+
<p>
21+
Open <a href="https://developers.google.com/chrome-developer-tools/">Chrome Developer Tools</a> (option+command+j on Mac OS X) and refresh the browser. You'll be able to step through code with the <a href="https://developers.google.com/chrome-developer-tools/docs/javascript-debugging">debugger</a>.
22+
</p>
2323
</div>
24+

0 commit comments

Comments
 (0)