aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content
AgeCommit message (Collapse)Author
2012-08-10docs(guide): hide scenario for directive exampleVojta Jina
scenario test for this example would be tricky, we need to teach the runner how to inject mocks first.
2012-08-10fix(docs): "in depth" -> "in-depth"brettcannon
2012-07-19fix(docs): Capitalize Angular.brettcannon
2012-07-19fix(docs): Fix a spelling mistake by replacing the noun with "it"brettcannon
2012-07-19fix(docs): "were" -> "where"brettcannon
2012-07-19fix(docs): Capitalize "URL".brettcannon
2012-07-19fix(docs): Fixed defer to timeout change in timer directive exampleChris Dawson
2012-07-19fix(docs): Spelling errorsChris Dawson
2012-07-19fic(docs): Consistently use __bold__ for things that must be done when ↵brettcannon
moving the ng-controller declaration.
2012-07-19fix(docs): Tweak some grammar and add some links relating to DI.brettcannon
2012-07-19fix(docs): Capitalize "APIs"brettcannon
2012-07-19fix(docs): Capitalize "Angular".brettcannon
2012-07-19fix(docs): Capitalize Angular.brettcannon
2012-07-19fix(docs): Add a missing "the".brettcannon
2012-07-19fix(docs): ngRepeater isn't a thing, ngRepeat isbrettcannon
2012-07-19fix(docs): Remove a redundant "in".brettcannon
2012-07-18fix(docs): Grammatical fixbrettcannon
2012-07-18fix(docs): Fixed some awkward wordingbrettcannon
2012-07-18fix(docs): Tweak formatting and wording of a listbrettcannon
2012-07-18fix(docs): Don't want the present participle of "is"brettcannon
2012-07-18fix(docs): Adjectve accidentally made into an adverbbrettcannon
2012-07-18fix(docs): Minor grammatical fixbrettcannon
2012-07-16fix(docs): Fixed typo: changed `ngRepeate` to `ngRepeat`.Rishabh Rao
2012-07-16fix(docs): Fix spelling, punctuation and grammatical errors on dev guide ↵Jamie Krug
bootstrap page.
2012-07-16fix(docs): Fix spelling, punctuation and grammatical errors on dev guide ↵Jamie Krug
compiler page.
2012-07-16fix(docs): Fix spelling, punctuation and grammatical errors on dev guide ↵Jamie Krug
overview page.
2012-07-16fix(docs): correct typoKevin Old
2012-06-12fix($defer): remove deprecated $defer serviceIgor Minar
2012-06-12docs(*): simplify doc urlsIgor Minar
we now have two types of namespaces: - true namespace: angular.* - used for all global apis - virtual namespace: ng.*, ngMock.*, ... - used for all DI modules the virual namespaces have services under the second namespace level (e.g. ng.) and filters and directives prefixed with filter: and directive: respectively (e.g. ng.filter:orderBy, ng.directive:ngRepeat) this simplifies urls and makes them a lot shorter while still avoiding name collisions
2012-06-10docs(*): fix various outdated docs and examplesIgor Minar
Closes #1030
2012-06-09docs($location): clarify the two-way data-binding noteIgor Minar
Closes #1030
2012-06-08feat($compile): simplify isolate scope bindingsMisko Hevery
Changed the isolate scope binding options to: - @attr - attribute binding (including interpolation) - =model - by-directional model binding - &expr - expression execution binding This change simplifies the terminology as well as number of choices available to the developer. It also supports local name aliasing from the parent. BREAKING CHANGE: isolate scope bindings definition has changed and the inject option for the directive controller injection was removed. To migrate the code follow the example below: Before: scope: { myAttr: 'attribute', myBind: 'bind', myExpression: 'expression', myEval: 'evaluate', myAccessor: 'accessor' } After: scope: { myAttr: '@', myBind: '@', myExpression: '&', // myEval - usually not useful, but in cases where the expression is assignable, you can use '=' myAccessor: '=' // in directive's template change myAccessor() to myAccessor } The removed `inject` wasn't generaly useful for directives so there should be no code using it.
2012-06-04docs(guide): correct couple of typosunknown
2012-06-02doc(NgModelController) add example and $render documentationMisko Hevery
Closes#930
2012-06-02doc(guide): corrected examplesMisko Hevery
2012-06-02merge cleanupMisko Hevery
2012-06-02doc(guide): clean up broken linksMisko Hevery
2012-06-02doc(compiler): rewriteMisko Hevery
2012-06-02docs(introduction): renameMisko Hevery
2012-06-02doc(i18n): renameMisko Hevery
2012-06-02docs(expression): rewriteMisko Hevery
2012-06-02docs(scope): rewriteMisko Hevery
2012-06-02docs(dependency injecton): rewriteMisko Hevery
2012-06-02docs(bootstrap): rewritten bootstrap guideMisko Hevery
2012-06-02docs(overview): updated overview guideMisko Hevery
2012-06-01feat($route): rename template -> tempalteUrl and add support for inline ↵Misko Hevery
templates BREAKING CHANGE: template in $route definition is now templateUrl To migrate just rename `template` to `templateUrl`.
2012-06-01chore($route): rename eventsMisko Hevery
BREAKING CHANGE rename $beforeRouteChange to $routeChangeStart rename $afterRouteChange to $routeChangeSuccess
2012-05-04chore(docs): re-skin main documentationMisko Hevery
2012-04-30docs(tutorial): update all the remaining stepsIgor Minar
I made some diagrams and portions of the text that are stil stale invisible. We'll fix these in the next relese.
2012-04-21docs(directive): fix transclusion examplesVojta Jina