| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-03-18 | fix(angular.bootstrap): only allow angular to load once | Siddique Hameed | |
| This is hard to test as a unit-test, since it involves the actual loading of angular, but it turns out that it is easy to test using a protractor e2e test. Closes #5863 Closes #5587 | |||
| 2014-03-17 | style($templateCache): remove trailing whitespace | Caitlin Potter | |
| This was introduced by 2ca6d650e8a13cee28f11c38622cab231787325f, somewhat inexplicably as I had run grunt ci-checks locally. But regardless, this should fix this up. | |||
| 2014-03-17 | docs($templateCache): use GFM example format rather than <pre> tags | Jesse Palmer | |
| Updated example formatting. Closes #6068 | |||
| 2014-03-17 | docs(loader): add annotations to example | Edward Brey | |
| 2014-03-17 | docs($cookies): cookies serializer only supports strings | Tyler Kellogg | |
| Closes #6705 | |||
| 2014-03-17 | docs(ngView): remove global controller definitions | unicodesnowman | |
| instead use angular modules also fix formatting | |||
| 2014-03-17 | docs(booleanAttrs): fix typo | Sekib Omazic | |
| 2014-03-17 | docs(ngForm): remove duplicate @param annotation | David Rogers | |
| When the example for `ngAnimate` was added in commit:3344396, the `@param name` annotation was unintentionally duplicated. Remove this duplicate. Closes #6720 | |||
| 2014-03-17 | fix(jqLite): traverse `host` property for DocumentFragment in inheritedData() | Caitlin Potter | |
| If dealing with a document fragment node with a host element, and no parent, use the host element as the parent. This enables directives within a Shadow DOM or polyfilled Shadow DOM to lookup parent controllers. Closes #6637 | |||
| 2014-03-17 | docs(ngInclude): make the quote type explicit | Mark Jones | |
| 2014-03-17 | docs($http): update shortcut method description | linclark | |
| Update docs to reflect that $http no longer requires passing in an HTTP method, as changed in #6401. | |||
| 2014-03-17 | docs(ngRoute): remove global controller syntax in the example | bradwheel | |
| 2014-03-15 | fix($http): allow sending Blob data using $http | Bruno Baia | |
| Closes #5012 | |||
| 2014-03-14 | fix($http): don't covert 0 status codes to 404 for non-file protocols | Pawel Kozlowski | |
| PR #5547 introduced conversion of all 0 status codes to 404 for cases where no response was recieved (previously this was done for the file:// protocol only). But this mechanism is too eager and masks legitimate cases where status 0 should be returned. This commits reverts to the previous mechanism of handling 0 status code for the file:// protocol (converting 0 to 404) while retaining the returned status code 0 for all the protocols other than file:// Fixes #6074 Fixes #6155 | |||
| 2014-03-14 | fix($$rAF): always fallback to a $timeout incase native rAF isn't supported | Matias Niemelä | |
| Closes #6654 | |||
| 2014-03-14 | fix(ngAnimate): setting classNameFilter disables animation inside ng-if | Tomer Chachamu | |
| Closes #6539 | |||
| 2014-03-13 | docs(ngMock): grammar nitpick. | Nick Heiner | |
| 2014-03-13 | docs($resource): fix example using promise | Wesley Cho | |
| 2014-03-13 | fix (ngAnimate): fix requestAnimationFrame for old version of Firefox | Thomas Belin | |
| The recent $$RAFProvider which is a wrapper for the native requestAnimationFrame method doesn't use the mozRequestAnimationFrame. Old versions of FF (20 for example) crash if ngAnimate is included No breaking changes and fix issue https://github.com/angular/angular.js/issues/6535 Closes #6535 Closes #6540 | |||
| 2014-03-10 | docs(route.js): changed html entities lt gt to < and > | Louis Haußknecht | |
| 2014-03-10 | docs(ngRepeat): Separate animation class in new lines | Basem Mostafa | |
| Moving to new lines & making it bold to avoid confusion when they r all in same line without any separation Closes #6633 | |||
| 2014-03-10 | docs($route): change routes property to correct type | doodeec | |
| change $route.routes property type to Object, property is marked incorrectly as an Array Closes #6552 | |||
| 2014-03-10 | feat(): whitelist blob urls for sanitization of data-bound image urls | Igor Minar | |
| Closes #4623 | |||
| 2014-03-07 | docs($sce): correct typo | Sekib Omazic | |
| `consititute` -> `constitute` Typo fixed Closes #6607 | |||
| 2014-03-07 | docs(ngBind): fix typo | Sekib Omazic | |
| `preferrable` -> `preferable` Typo fixed Closes #6606 | |||
| 2014-03-07 | style(jsdoc tags): remove/ammend invalid tags | Peter Bacon Darwin | |
| As highlighted by the new sterner dgeni. | |||
| 2014-03-07 | fix($compile): support templates with thead and tfoot root elements | Lucas Galfasó | |
| If the first element in a template is a <thead> or a <tfoot>, then use the existing logic to handle table elements compilation. Closes #6289 | |||
| 2014-03-07 | docs($route): fix formatting of example code | Peter Bacon Darwin | |
| 2014-03-06 | feat(input): support types date, time, datetime-local, month, week | Ben Lesh | |
| On older browser that don't support the new HTML5 inputs and display a text input instead, the user is required to enter the data in the corresponding ISO format. The value in `ng-model` will always be a date. E2e tests contain a workaround to a bug in webdriver, see https://github.com/angular/protractor/issues/562. Also adds weeks as format to the `dateFilter`. Related to #757. Closes #5864. | |||
| 2014-03-06 | fix(style): expressions in style tags | Sekib Omazic | |
| Enable data-binding for style tags. Note: this feature does not work on IE8. Closes #2387 Closes #6492 | |||
| 2014-03-05 | style: enable jscs requireLeftStickedOperators rule | Timothée Jeannin | |
| Closed #6544. | |||
| 2014-03-02 | docs(loader): remove duplicate "the" | Ole Michaelis | |
| Typo fixup Closes #6521 | |||
| 2014-03-02 | docs(ngView): rename controller suffix in ngView example | Gronblom Sam | |
| - According to https://github.com/angular/angular.js/blob/5bf81bc111a866ec65ef86c01336911e577df5df/docs/content/guide/controller.ngdoc#L166 Ctrl should be the suffix for a controller Closes #5817 | |||
| 2014-03-02 | docs($interval): cancel() takes a promise not a number | MikeMcElroy | |
| Closes #6485 | |||
| 2014-03-02 | docs(*): ensure jsdoc type expressions are valid | Peter Bacon Darwin | |
| 2014-03-02 | docs(loader): change 'MyModule' -> 'myModule' | Paolo Moretti | |
| Closes #5393 | |||
| 2014-03-02 | docs(ngMock): fixes in flush() documentation | thenickcox | |
| The docs for the `flush()` method contained a few grammatical errors and were awkwardly worded. Change the explanation of the method to remove errors and read more naturally. Closes #4886 | |||
| 2014-02-28 | style: enable jscs requireRightStickedOperators rule | Igor Minar | |
| 2014-02-28 | docs(forms): generated CSS classes for forms and inputs must have a ng prefix | Matias Niemelä | |
| 2014-02-28 | docs(input): update $parsers NgModelController doc | Jason Winnebeck | |
| Make it clear that the result of the $parsers pipeline is what goes to the model value. Closes #5708 | |||
| 2014-02-28 | docs(ngAnimate): add missing 'super' to addClass | nosideeffects | |
| 2014-02-28 | fix($animate): delegate down to addClass/removeClass if setClass is not found | Matias Niemelä | |
| Closes #6463 | |||
| 2014-02-28 | feat($animate): animate dirty, pristine, valid, invalid for form/fields | Yves Brissaud | |
| Add css animations when form or field status change to/from dirty, pristine, valid or invalid. This works like animation system present with ngClass, ngShow, etc. Closes #5378 | |||
| 2014-02-27 | docs(core): update fromJson return values | linclark | |
| Dates are not returned, so remove Date from list of return values. Closes #3070 | |||
| 2014-02-27 | fix(jqLite): properly toggle multiple classes | Pawel Kozlowski | |
| Fixes #4467 Closes #6448 | |||
| 2014-02-27 | chore(animate): fix typo in a comment | Lajos Veres | |
| 2014-02-27 | docs($sce): fix typo | Lajos Veres | |
| 2014-02-27 | docs($compile): fix typo | Lajos Veres | |
| 2014-02-26 | docs($injector): fix typo | desertapple | |
| Duplicate 'that' words present in the document, just remove one of them. Closes #6469 | |||
| 2014-02-26 | fix($animate): ensure all comment nodes are removed during a leave animation | Matias Niemelä | |
| Closes #6403 | |||
