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

Commit

Permalink
doc(guide): add concepts
Browse files Browse the repository at this point in the history
  • Loading branch information
mhevery committed Aug 27, 2012
1 parent 96697f4 commit 7a5f25f
Show file tree
Hide file tree
Showing 15 changed files with 7,961 additions and 2 deletions.
467 changes: 467 additions & 0 deletions docs/content/guide/concepts.ngdoc

Large diffs are not rendered by default.

Binary file added docs/img/guide/concepts-controller.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/img/guide/concepts-directive.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/img/guide/concepts-model.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/img/guide/concepts-module-injector.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/img/guide/concepts-runtime.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/img/guide/concepts-scope.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/img/guide/concepts-startup.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/img/guide/concepts-view.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions docs/src/example.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ exports.Example.prototype.addSource = function(name, content) {
};

exports.Example.prototype.toHtml = function() {
return '<h1>Source</h1>\n' +
return '<h2>Source</h2>\n' +
this.toHtmlEdit() +
this.toHtmlTabs() +
'<h1>Demo</h1>\n' +
'<h2>Demo</h2>\n' +
this.toHtmlEmbed();
};

Expand Down
9 changes: 9 additions & 0 deletions docs/src/templates/css/docs.css
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,11 @@ ul.events > li > h3 {
font-family: monospace;
}

.center {
display: block;
margin: 2em auto;
}

.diagram {
display: block;
margin: 2em auto;
Expand Down Expand Up @@ -175,3 +180,7 @@ ul.events > li > h3 {
color: white;
text-decoration: none;
}

.clear {
clear: both;
}

0 comments on commit 7a5f25f

Please sign in to comment.