| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-10-03 | docs(guide/directive): fix indentation in example code | mtaran-google | |
| Closes #4241 | |||
| 2013-10-03 | docs(guide/directive): clarify use of binding to scopes | gdennie | |
| The use of 'angular' as sample text is confusing to the newbie in that they are forced to confirm that the text 'angular' is not a keyword or otherwise referring to a system component. This is changed to a more obvious sample text. The most common form of `ngBind` is moved to the top of the list. Closes #4237 | |||
| 2013-07-04 | docs(guide/directive): make directive controller minification-safe | Andrew O'Brien | |
| It is best to emphasize that the "controller" property needs to be min safe Closes #3125 | |||
| 2013-06-19 | docs(directive): fix typo | sarkasm | |
| 2013-05-22 | docs(guide/directive): clarify directive priority | Jens Rantil | |
| Fixes #2644. | |||
| 2013-05-21 | doc($compile): clarify compile function return value | Jens Rantil | |
| If a compile function (within a directive) returns a function, it is a post-link function. Closes: #2713 | |||
| 2013-04-30 | docs(guide:directive): add directive controller usage | Chris Nicola | |
| Specifically adding a directive controller to the example definition and how to use declare injectables to avoid minification errors. | |||
| 2013-04-17 | docs(directive guide) typo in compile/link section | @fbiville | |
| The code snippet shows `{{action.description}}`, the explanation referred to it as `{{action.descriptions}}`. | |||
| 2013-04-11 | docs(guide/directives): give more details about directive declaration | Luc Morin | |
| 2013-04-04 | docs(directive): fix typo | Srinivas Kusunam | |
| 2013-03-20 | docs(directive): Fix entity confusion in example. | Arlen Christian Mart Cuss | |
| 2013-03-08 | docs(directive): minor typo fix | Niel de la Rouviere | |
| Changed "obeject" to "object" | |||
| 2013-02-25 | docs(guide/directives): update obsolete doc reference | Vineet Kumar | |
| Replace an obsolete reference to a nonexistent "Creating Widgets" section with a real link to "Creating Components". | |||
| 2013-02-14 | docs(guide): fix some invalid javascript in directive documentation | Dylan Pyle | |
| Use double quotes to maintain consistency with other HTML | |||
| 2013-01-17 | docs(guide): minor grammar fixes | Matt Rohrer | |
| 2013-01-13 | doc(directive): Fix typos in dialog widget | Lucas Galfasó | |
| Fixes #1799 | |||
| 2012-12-19 | docs(guide): minor English corrections to the Directive guide | John Fletcher | |
| 2012-12-18 | docs(directive): old syntax | Miško Hevery | |
| 2012-11-29 | docs(directive): correct expression, fix typo and re-wrap lines | Daniel Luz | |
| 2012-11-22 | docs(): Fix a couple of typos in the documentation | Kris Jenkins | |
| 2012-11-22 | docs(guide/directive): fix typo | John Hume | |
| 2012-11-11 | docs(guide/directive): fix names in scope '='; easier to grok | Tim Macfarlane | |
| 2012-11-05 | docs(directive): fix typo | Miško Hevery | |
| 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-08-30 | doc(devguide) - Fix typos and small grammatical errors in the developer guide. | Steve Nicolai | |
| 2012-08-30 | fix(docs): Fix typos and improve grammar. | Jamie Krug | |
| 2012-08-30 | fix(docs): Fix bad links. | Jamie Krug | |
| 2012-08-27 | doc(directive) correct typos | Colin Frei | |
| 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-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-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-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(guide): clean up broken links | Misko Hevery | |
| 2012-05-04 | chore(docs): re-skin main documentation | Misko Hevery | |
