| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-12-18 | docs(directive): old syntax | Miško Hevery | |
| 2012-12-10 | docs(guide): fix injector service code example | Romain Neutron | |
| Fix syntax and update code to the latest API | |||
| 2012-12-07 | doc(concepts): Fix typo in $render() function | János Rusiczki | |
| 2012-11-29 | docs(directive): correct expression, fix typo and re-wrap lines | Daniel Luz | |
| 2012-11-21 | docs(): Fix a couple of typos in the documentation | Kris Jenkins | |
| 2012-11-17 | docs(guide/concepts): some typo/grammar fixes | Dave Clayton | |
| 2012-11-17 | docs(guide/directive): fix typo | John Hume | |
| 2012-11-11 | docs(guide): fix run-on sentence in modules guide | Jamison Dance | |
| 2012-11-11 | docs(guide/directive): fix names in scope '='; easier to grok | Tim Macfarlane | |
| 2012-11-05 | Update docs/content/guide/directive.ngdoc | Miško Hevery | |
| docs(directive): fix typo | |||
| 2012-10-31 | docs(guide/location): fix table formatting | Fred Sauer | |
| Fix table formatting so headings are bold, rows are separated by lines, and rows have :hover style | |||
| 2012-10-31 | docs(module): fix typo in example | Tim Macfarlane | |
| fixed example app, `simpleAppModule` should have been `myAppModule`. | |||
| 2012-09-13 | docs(directive): remove reference to old isolation syntax | Miško Hevery | |
| 2012-09-11 | docs(guide): fix directive interpolation example code | Brian Ford | |
| Closes #1339 | |||
| 2012-09-06 | docs(concept): correct example for creating injector | Misko Hevery | |
| 2012-09-06 | docs(module): fixed module example and corrected typos | Godmar Back | |
| 2012-09-06 | docs(module): myAppModule -> simpleAppModule | Jay Zeng | |
| 2012-08-30 | doc(module) changed simpleApp to myApp in the Module page guide for consistency | Sahat Yalkabov | |
| 2012-08-30 | doc(devguide) - Fix typos and small grammatical errors in the developer guide. | Steve Nicolai | |
| 2012-08-30 | Loading from Google CDN | Uri Goldshtein | |
| As you guys had mansion, we can and need to do it through Google CDN for better performance, so i've updated it accordingly | |||
| 2012-08-30 | docs(typos): fix typos in dev guide | Tyson Benson | |
| 2012-08-30 | Update docs/content/guide/overview.ngdoc | csugden | |
| Corrects video information | |||
| 2012-08-30 | fix(docs): Fix typos and improve grammar. | Jamie Krug | |
| 2012-08-30 | fix(docs): Fix bad links. | Jamie Krug | |
| 2012-08-30 | docs(module) fix typo | Colin Frei | |
| 2012-08-27 | doc(guide): add concepts | Misko Hevery | |
| 2012-08-27 | doc(directive) correct typos | Colin Frei | |
| 2012-08-27 | doc(guide) simplify the guide home page | Misko Hevery | |
| 2012-08-12 | docs: fix broken links to $compileProvider.directive() | Vojta Jina | |
| 2012-08-10 | fix(docs): added note about using JSON3 as a polyfill for IE7 | Brian Ford | |
| 2012-08-10 | fix(docs): added note about needing JSON shim for IE7 and earlier | Brian Ford | |
| 2012-07-30 | 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-07-20 | fix(docs): "in depth" -> "in-depth" | brettcannon | |
| 2012-07-19 | fix(docs): Fix a spelling mistake by replacing the noun with "it" | 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-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 | |
