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

Commit 7a5f25f

Browse files
committed
doc(guide): add concepts
1 parent 96697f4 commit 7a5f25f

15 files changed

+7961
-2
lines changed

docs/content/guide/concepts.ngdoc

+467
Large diffs are not rendered by default.
80.2 KB
Loading

docs/img/guide/concepts-directive.png

48.4 KB
Loading

docs/img/guide/concepts-model.png

54.7 KB
Loading
28.9 KB
Loading

docs/img/guide/concepts-runtime.png

39.8 KB
Loading

docs/img/guide/concepts-scope.png

78.3 KB
Loading

docs/img/guide/concepts-startup.png

34 KB
Loading

docs/img/guide/concepts-view.png

51 KB
Loading

docs/src/example.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ exports.Example.prototype.addSource = function(name, content) {
5858
};
5959

6060
exports.Example.prototype.toHtml = function() {
61-
return '<h1>Source</h1>\n' +
61+
return '<h2>Source</h2>\n' +
6262
this.toHtmlEdit() +
6363
this.toHtmlTabs() +
64-
'<h1>Demo</h1>\n' +
64+
'<h2>Demo</h2>\n' +
6565
this.toHtmlEmbed();
6666
};
6767

docs/src/templates/css/docs.css

+9
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,11 @@ ul.events > li > h3 {
145145
font-family: monospace;
146146
}
147147

148+
.center {
149+
display: block;
150+
margin: 2em auto;
151+
}
152+
148153
.diagram {
149154
display: block;
150155
margin: 2em auto;
@@ -175,3 +180,7 @@ ul.events > li > h3 {
175180
color: white;
176181
text-decoration: none;
177182
}
183+
184+
.clear {
185+
clear: both;
186+
}

0 commit comments

Comments
 (0)