| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-08-10 | docs(guide): hide scenario for directive example | Vojta Jina | |
| scenario test for this example would be tricky, we need to teach the runner how to inject mocks first. | |||
| 2012-08-10 | fix(docs): "in depth" -> "in-depth" | brettcannon | |
| 2012-07-19 | fix(docs): Capitalize Angular. | brettcannon | |
| 2012-07-19 | fix(docs): Fix a spelling mistake by replacing the noun with "it" | brettcannon | |
| 2012-07-19 | fix(docs): "were" -> "where" | brettcannon | |
| 2012-07-19 | fix(docs): Capitalize "URL". | brettcannon | |
| 2012-07-19 | fix(docs): Fixed defer to timeout change in timer directive example | Chris Dawson | |
| 2012-07-19 | fix(docs): Spelling errors | Chris Dawson | |
| 2012-07-19 | fic(docs): Consistently use __bold__ for things that must be done when ↵ | brettcannon | |
| moving the ng-controller declaration. | |||
| 2012-07-19 | fix(docs): Tweak some grammar and add some links relating to DI. | brettcannon | |
| 2012-07-19 | fix(docs): Capitalize "APIs" | brettcannon | |
| 2012-07-19 | fix(docs): Capitalize "Angular". | brettcannon | |
| 2012-07-19 | fix(docs): Capitalize Angular. | brettcannon | |
| 2012-07-19 | fix(docs): Add a missing "the". | brettcannon | |
| 2012-07-19 | fix(docs): ngRepeater isn't a thing, ngRepeat is | brettcannon | |
| 2012-07-19 | fix(docs): Remove a redundant "in". | brettcannon | |
| 2012-07-18 | fix(docs): Grammatical fix | brettcannon | |
| 2012-07-18 | fix(docs): Fixed some awkward wording | brettcannon | |
| 2012-07-18 | fix(docs): Tweak formatting and wording of a list | brettcannon | |
| 2012-07-18 | fix(docs): Don't want the present participle of "is" | brettcannon | |
| 2012-07-18 | fix(docs): Adjectve accidentally made into an adverb | brettcannon | |
| 2012-07-18 | fix(docs): Minor grammatical fix | brettcannon | |
| 2012-07-16 | fix(docs): Fixed typo: changed `ngRepeate` to `ngRepeat`. | Rishabh Rao | |
| 2012-07-16 | fix(docs): Fix spelling, punctuation and grammatical errors on dev guide ↵ | Jamie Krug | |
| bootstrap page. | |||
| 2012-07-16 | fix(docs): Fix spelling, punctuation and grammatical errors on dev guide ↵ | Jamie Krug | |
| compiler page. | |||
| 2012-07-16 | fix(docs): Fix spelling, punctuation and grammatical errors on dev guide ↵ | Jamie Krug | |
| overview page. | |||
| 2012-07-16 | fix(docs): correct typo | Kevin Old | |
| 2012-06-12 | fix($defer): remove deprecated $defer service | Igor Minar | |
| 2012-06-12 | docs(*): simplify doc urls | Igor 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-10 | docs(*): fix various outdated docs and examples | Igor Minar | |
| Closes #1030 | |||
| 2012-06-09 | docs($location): clarify the two-way data-binding note | Igor Minar | |
| Closes #1030 | |||
| 2012-06-08 | feat($compile): simplify isolate scope bindings | Misko 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-04 | docs(guide): correct couple of typos | unknown | |
| 2012-06-02 | doc(NgModelController) add example and $render documentation | Misko Hevery | |
| Closes#930 | |||
| 2012-06-02 | doc(guide): corrected examples | Misko Hevery | |
| 2012-06-02 | merge cleanup | Misko Hevery | |
| 2012-06-02 | doc(guide): clean up broken links | Misko Hevery | |
| 2012-06-02 | doc(compiler): rewrite | Misko Hevery | |
| 2012-06-02 | docs(introduction): rename | Misko Hevery | |
| 2012-06-02 | doc(i18n): rename | Misko Hevery | |
| 2012-06-02 | docs(expression): rewrite | Misko Hevery | |
| 2012-06-02 | docs(scope): rewrite | Misko Hevery | |
| 2012-06-02 | docs(dependency injecton): rewrite | Misko Hevery | |
| 2012-06-02 | docs(bootstrap): rewritten bootstrap guide | Misko Hevery | |
| 2012-06-02 | docs(overview): updated overview guide | Misko Hevery | |
| 2012-06-01 | feat($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-01 | chore($route): rename events | Misko Hevery | |
| BREAKING CHANGE rename $beforeRouteChange to $routeChangeStart rename $afterRouteChange to $routeChangeSuccess | |||
| 2012-05-04 | chore(docs): re-skin main documentation | Misko Hevery | |
| 2012-04-30 | docs(tutorial): update all the remaining steps | Igor 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-21 | docs(directive): fix transclusion examples | Vojta Jina | |
