| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-04-16 | docs(guide.unit-testing): fix typo | Timothy Ahong | |
| 2013-04-15 | doc(overview): add link to angular demo slides to overview | Pete Bacon Darwin | |
| 2013-04-13 | docs(module): fix typo | Seunghoon Yeon | |
| 2013-04-11 | docs(guide): Update $locationProvider docs. | Prathan Thananart | |
| Default hashPrefix setting is not `'!'`, it's actually `""`. Source: https://github.com/angular/angular.js/blob/master/src/ng/location.js#L472 | |||
| 2013-04-11 | docs(guide/i18n): fix a typo | kamagatos | |
| 2013-04-11 | docs(guide/concepts): fix typo | Brent Morrow | |
| An event is a user **interaction**, timer event, or network event (response from a server). | |||
| 2013-04-11 | docs(guide): Added $ sign to controller example | {Qingping,Dave} Hou | |
| 2013-04-11 | docs(dev-guide): Fixed a typo. | urenmj | |
| 2013-04-11 | docs(guide/concepts): wording change | Brent Morrow | |
| ... or when working with --> a <-- third-party library callbacks. ... or when working with third-party library callbacks. | |||
| 2013-04-11 | docs(guide/concepts): wording change | Brent Morrow | |
| 2013-04-11 | docs(guide/expression): wording changes | Brent Morrow | |
| 2013-04-11 | docs(guide/directives): give more details about directive declaration | Luc Morin | |
| 2013-04-11 | docs(guide/filters): document multiple arguments syntax | Colin Kahn | |
| Add example of using a filter with that accepts multiple arguments. | |||
| 2013-04-11 | docs(guide): updates for legacy IE7 support | Brian Campbell | |
| - note re: id="ng-app" to bootstrap/IE partials - added doctype/xmlns to markup - add cond comment re: json2/3 to markup | |||
| 2013-04-06 | docs(concespts): correct spelling and remove unnecessary word | Heath Matlock | |
| 2013-03-29 | docs(guide): add missing closing div tag | Felipe Lahti | |
| 2013-03-29 | docs(guide): fix typo in DI. angualar -> angular | Felipe Lahti | |
| 2013-03-29 | docs(directive): fix typo | Srinivas Kusunam | |
| 2013-03-29 | docs(*): fixed typos | Pascal Borreli | |
| 2013-03-24 | Update forms.ngdoc | James deBoer | |
| docs(forms): Fixed a typo. render -> $render | |||
| 2013-03-19 | 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-27 | feat($compile): support for dynamic template generation | Luis Ramón López | |
| `template` and `templateUrl` properties can now be optionally defined via a function. This allows templates to be dynamically generated on the fly. | |||
| 2013-02-27 | feat($compile): add attribute binding support via ngAttr* | Luis Ramón López | |
| Sometimes is not desirable to use interpolation on attributes because the user agent parses them before the interpolation takes place. I.e: <svg> <circle cx="{{cx}}" cy="{{cy}}" r="{{r}}"></circle> </svg> The snippet throws three browser errors, one for each attribute. For some attributes, AngularJS fixes that behaviour introducing special directives like ng-href or ng-src. This commit is a more general solution that allows prefixing any attribute with "ng-attr-", "ng:attr:" or "ng_attr_" so it will be set only when the binding is done. The prefix is then removed. Example usage: <svg> <circle ng-attr-cx="{{cx}}" ng-attr-cy="{{cy}}" ng:attr-r="{{r}}"></circle> </svg> Closes #1050 Closes #1925 | |||
| 2013-02-25 | feat(JQLite): ready() now supports document.readyState=='complete' | Jørgen Borgesen | |
| JQLite.ready() used for automatic bootstrapping (when jQuery is not present) now checks if document already is ready when first called. This simplifies bootstrapping when the angular script is loaded asynchronously. However if other scripts with angular app code are being loaded as well it is developers responsibility to ensure that these scripts are loaded after angular-loader.js is evaluated and before angular.js script is evaluated. | |||
| 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-25 | feat($compile): '=?' makes '=' binding optional | Luis Ramón López | |
| If you bind using '=' to a non-existant parent property, the compiler will throw a NON_ASSIGNABLE_MODEL_EXPRESSION exception, which is right because the model doesn't exist. This enhancement allow to specify that a binding is optional so it won't complain if the parent property is not defined. In order to mantain backward compability, the new behaviour must be specified using '=?' instead of '='. The local property will be undefined is these cases. Closes #909 Closes #1435 | |||
| 2013-02-14 | docs(guide): fix some invalid javascript in directive documentation | Dylan Pyle | |
| Use double quotes to maintain consistency with other HTML | |||
| 2013-02-14 | docs(guide): Fix typos in concepts/model,view. | Jesse Cooke | |
| 2013-02-06 | docs(guide): remove stale info about filters changing DOM | Igor Minar | |
| as of v0.10.6 this is not the case any more | |||
| 2013-02-06 | docs(module): fix code example | theotheo | |
| 2013-01-18 | docs(guide): change prototype methods to scope methods in DI examples | Amir H. Hajizamani | |
| As explained in 'Understanding the Controller Component', Controllers written for new (post 1.0 RC) versions of Angular need to add methods to the scope directly, not the function's prototype. Correcting this example should remove any ambiguity, especially for beginners. | |||
| 2013-01-17 | doc(guide): Fixed typos at the unit tests guide | Shai Reznik | |
| 2013-01-17 | doc(guide): Fix examples of $location.html5mode | Shai Reznik | |
| 2013-01-17 | docs(guide): minor grammar fixes | Matt Rohrer | |
| 2013-01-13 | doc(directive): Fix typos in dialog widget | Lucas Galfasó | |
| Fixes #1799 | |||
| 2013-01-07 | docs(guide): fix typos in unit test guide | kim lokoy | |
| 2013-01-05 | docs(forms): fix code example for a custom form control | Pawel Kozlowski | |
| Closes #1021 | |||
| 2012-12-31 | docs(guide): change example controller to properly call greet method on greeter | Matt Hardy | |
| 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-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 | |||
