| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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(tutorial): remove extra back-tick character | Thomas Schultz | |
| 2013-02-06 | docs(module): fix code example | theotheo | |
| 2013-02-04 | docs(contributing): add CLA anchor for deeplinking | Igor Minar | |
| 2013-01-29 | docs(tutorial): fix typo | radu | |
| Update docs/content/tutorial/step_00.ngdoc removed redundant verb | |||
| 2013-01-18 | docs(contribute): adding npm install to step-by-step | Will Moore | |
| npm install is listed in the dependencies section of the contribute guide but is missing from the step-by-step. This adds it as step 4. | |||
| 2013-01-18 | docs(cookbook): change prototype methods to scope methods in Buzz | 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-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: recommend using Google CDN | Daniel Demmel | |
| 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-09 | Update docs/content/misc/faq.ngdoc | naomiblack | |
| Updated the canonical video to a recent one. Fixed a typo. | |||
| 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 | |||
| 2013-01-04 | docs(faq): add info on logo reuse and how to get t-shirts and stickers | naomiblack | |
| 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-08 | docs(tutorial): typo fix commandx -> command | Eric Case | |
| 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(tutorial): change module name in step-7 | 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 | chore(testacular): use local testacular version | Sudhir Jonathan | |
| Making testacular a dependency to avoid having to install it globally. (Causes npm issues on some machines) | |||
| 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-10-31 | docs(contribute): fix task name for continuous testing | Daniel Luz | |
| 2012-10-31 | fix(doc): typo on FAQ | Daniel Luz | |
| Closes #1493 | |||
| 2012-10-26 | doc(faq): Add Common Pitfalls section | Braden Shepherdson | |
| Describes several common pitfalls new users of Angular fall into that I've observed in #angularjs. | |||
| 2012-10-26 | doc(faq): Fix minor spelling and wording errors | Braden Shepherdson | |
| 2012-10-19 | docs(contribute): add CLA note to code submission section | Igor Minar | |
| 2012-10-19 | docs(contribute): add visible link to github project | Igor Minar | |
| 2012-10-18 | docs(tutorial): replace JsTD with Testacular + drop snapshots | Igor Minar | |
| JsTD references have been replaced with Testacular stuff. snapshots are PITA to maintain so I'm dropping them, everyone loves the Git version anyway. | |||
| 2012-10-05 | docs(downloading): update the downloading docs | Igor Minar | |
| 2012-09-16 | docs(contribute): update contribute docs | Igor Minar | |
| 2012-09-15 | docs(contribute): update misc/contribute docs with Testacular info | Igor Minar | |
