| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-10-07 | docs(ngValue): add docs for ngValue directive | Brian Ford | |
| Closes #4267 | |||
| 2013-10-07 | docs(ngModel): fix grammar and improve clarity | Dave Peticolas | |
| Closes #4291 Conflicts: src/ng/directive/input.js | |||
| 2013-09-27 | docs(ngCsp): fix grammar | Dave Peticolas | |
| 2013-09-27 | docs(dblClick): fix grammar | Dave Peticolas | |
| 2013-09-27 | docs(ngDisabled): clarify | Dave Peticolas | |
| 2013-09-25 | docs(ngHref): fix formatting and clarify | Dave Peticolas | |
| Closes #4106 | |||
| 2013-09-19 | docs(ngModelController): clarify issue with isolated scope directive | Pete Bacon Darwin | |
| See #4043 | |||
| 2013-09-19 | docs(input): fix spelling error and reword for clarity | ts-web | |
| 2013-09-19 | docs(ngForm): fix grammar and improve explanation | Dave Peticolas | |
| Closes #4050 | |||
| 2013-09-17 | docs(input): clarify that `contenteditable` is an HTML5 attribute | James | |
| Closes #3841 | |||
| 2013-09-16 | doc(api): fix grammar in a directive description | Dave Peticolas | |
| - Add missing words. - Simplify text. | |||
| 2013-09-16 | docs(api): fix grammar in ngClick description | Dave Peticolas | |
| - Add missing word 'directive'. - Add missing word 'an'. | |||
| 2013-09-13 | docs(ngController): rephrased the description for clarity | Dean Sofer | |
| 2013-09-13 | fix(ngOptions): ignore object properties which start with $ | Gowtam Lal | |
| 2013-09-11 | docs(ngModel): provide link for best practices. | Paxton Hare | |
| Closes #3973 | |||
| 2013-09-05 | docs(booleanAttrs): improve parameter docs for boolean attributes | Pete Bacon Darwin | |
| 2013-08-22 | revert: feat(ngForm): Supports expression in form names | Igor Minar | |
| This reverts commit 4407e81c618d42c70e8cfca4f52dfc4a669b5c68. No features or breaking changes in the stable branch please. | |||
| 2013-08-21 | revert: fix($compile): always instantiate controllers... | Igor Minar | |
| fix($compile): always instantiate controllers in parent->child order This reverts commit 683fd713c41eaf5da8bfbf53b574e0176c18c518. It turns out that there is some existing code that relies on the incorrect timing. Rather than breaking these apps that depend on stable releases, we are going to keep this changeo only in master and the apps will need to migrate to the correc timing during the 1.2 upgrade. | |||
| 2013-08-13 | docs(input): add missing ngChange directive for email type | David Bennett | |
| All other input types already have it. | |||
| 2013-08-12 | fix(ngCloak): hide element even when CSS 'display' is set | Vineet Kumar | |
| Previously an element like <div class="foo ng-cloak">...</div> would still be annoyingly visible if it matched a CSS rule like .foo { display: inline-block; }, overriding ng-cloak's display: none. | |||
| 2013-08-09 | docs(ngModel): validators should return undefined for invalid values. | Niall Smart | |
| Closes #3525 | |||
| 2013-08-08 | docs(ngModel): clarify docs for NgModelController# | Igor Minar | |
| Closes #3498 | |||
| 2013-08-07 | feat(ngForm): Supports expression in form names | Matthew Windwer | |
| <form name="ctrl.form"> form controller will accessible as $scope.ctrl.form instead of $scope['ctrl.form'] BREAKING CHANGE: If you have form names that will evaluate as an expression: <form name="ctrl.form"> And if you are accessing the form from your controller: Before: function($scope) { $scope['ctrl.form'] // form controller instance } After: function($scope) { $scope.ctrl.form // form controller instance } This makes it possible to access a form from a controller using the new "controller as" syntax. Supporting the previous behavior offers no benefit. | |||
| 2013-08-07 | fix(input): fix the email regex to accept TLDs up to 6 characters long | neilmcgibbon | |
| The input field email regex does't not match long domain extensions. This commit extends the email regexp to take a 6 character TLD. Example 6-character TLDs include .museum and .travel - (e.g. allabout.travel). | |||
| 2013-07-24 | fix(form): pick the right attribute name for ngForm | Pawel Kozlowski | |
| Closes #2997 | |||
| 2013-07-22 | fix($compile): always instantiate controllers in parent->child order | Igor Minar | |
| Previously it was possible to get into a situation where child controller was being instantiated before parent which resulted in an error. Closes #2738 | |||
| 2013-07-21 | docs(input): fix example | Jérémy | |
| The input [number] error spans did not show on the example, as they were relying on an non-existing property (myForm.list.$error) vs the working property (myForm.input.$error) | |||
| 2013-07-21 | docs(ngController): remove obsolete mention of scope as `this` in controller | Vineet Kumar | |
| Controllers are now (since angular 1.0) instantiated as regular constructorsand the scope is injectable as $scope rather than being referenced as `this` in controller methods. | |||
| 2013-07-11 | fix(ngSubmit): expose $event to ngSubmit callback | Wesley Cho | |
| 2013-07-11 | fix(ngValue): made ngValue to write value attribute to element | Mikk Kirstein | |
| 2013-07-11 | docs(ngList): fix example and add e2e test | Igor Minar | |
| 2013-07-11 | style(input): remove ws | Igor Minar | |
| 2013-07-08 | docs(ngModelController): provide a more intuitive example | Pete Bacon Darwin | |
| The example directive, using contenteditable was not showing required even if you cleared the content from it. Closes #3156 | |||
| 2013-07-04 | docs(input): ng-model doesn't work well with isolated scope directive | basarat | |
| Closes #3123 | |||
| 2013-06-27 | docs(ngBind): clarify some of the writing | Andrew Peterson | |
| 2013-06-27 | docs(ngPluralize): improve wording | Andrew Peterson | |
| 2013-06-13 | docs(select): fix typos in ngOptions | Misha Moroshko | |
| 2013-06-12 | docs(FormController): add methods for FormController | Dean Sofer | |
| 2013-06-12 | docs(ngModelController): improve $parsers/$formatters with example | Dean Peterson | |
| 2013-06-12 | docs(ngClass): fix minor typo. | Ore Landau | |
| 2013-06-11 | docs(ngSubmit): clarify that there must be no `action` attribute | Pete Bacon Darwin | |
| 2013-06-04 | docs(ngTransclude): fix outdated scope definition in example | Marcin Wosinek | |
| 2013-06-04 | docs(ngClass): clarify the use of object map | Luc Morin | |
| 2013-06-04 | docs(input): provide explanation of how ngModel will affect the local scope | Luc Morin | |
| 2013-05-18 | doc(ngModel): $setViewValue calls all parsers, not formatters | Joakim Blomskøld | |
| 2013-05-16 | docs(ngCsp): add more informative details | Dean Sofer | |
| Transferred from https://github.com/angular/angular.js/wiki/Using-AngularJS-in-a-Chrome-Extension-environment | |||
| 2013-05-10 | fix(ngPluralize): handle the empty string as a valid override | Lucas Galfasó | |
| Fix the check for overrides so it is able to handle the empty string Closes #2575 | |||
| 2013-05-07 | fix(select): ensure empty option is not lost in IE9 | Chad Smith | |
| Fix a check inside render for select elements with ngOptions, which compares the selected property of an element with it's desired state. Ensure the placeholder, if available, is explicitly selected if the model value can not be found in the option list. Without these fixes it's up to the browser implementation to decide which option to choose. In most browsers, this has the effect of displaying the first item in the list. In IE9 however, this causes the select to display nothing. Closes #2150, #1826 | |||
| 2013-05-07 | doc(input): fix small typo in code example | Hamish Macpherson | |
| 2013-04-29 | refact(ngClass): improve performance through bitwise operations | Robin Böhm | |
| Change modulo % 2 operations to bitwise & 1 Read about this in Nicholas C. Zakas book "High Performance JavaScript"(ISBN: 978-0-596-80279-0) Use the Fast Parts --> Bitwise Operators --> Page 156++ Proven at http://jsperf.com/modulo-vs-bitwise/11 | |||
