| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-07-11 | docs(ngList): fix example and add e2e test | Igor Minar | |
| 2013-07-11 | style(input): remove ws | Igor Minar | |
| 2013-07-10 | docs(ngMock): correct verifyNoOutstandingExpectation example | Mark Striemer | |
| 2013-07-09 | docs(angular.identity): fix missing 'angular' in identity function | Marco Vito Moscaritolo | |
| 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-08 | docs(numberFilter): fix explanation of default fraction size | Pete Bacon Darwin | |
| The default fraction size for the number filter is actually computed from the `NUMBER_FORMATS.PATTERNS.maxFrac` value in the current locale. Closes #3157 | |||
| 2013-07-04 | docs(input): ng-model doesn't work well with isolated scope directive | basarat | |
| Closes #3123 | |||
| 2013-07-04 | fix($compile): empty normalized href should pass sanitation check | Anders Hessellund Jensen | |
| Sometimes IE returns an empty string for its normalized href on a tags. This should pass the sanitation check in $compile. Closes #2219, #2593 | |||
| 2013-07-03 | fix(jqLite): prepend array in correct order | Joao Sa | |
| Match jQuery behavior when prepending array into empty element | |||
| 2013-07-01 | docs($cacheFactory): show that you can access existing caches | Itamar Rogel | |
| 2013-07-01 | docs(Angular.js): explain that toJson strips $... properties | Spencer Applegate | |
| In Angular.toJson, any properties with a leading '$' character will be stripped from the resulting string since angular uses this notation internally for services. There have been complaints of not knowing about this functionality until it breaks within their code. | |||
| 2013-06-27 | docs(ngBind): clarify some of the writing | Andrew Peterson | |
| 2013-06-27 | docs(ngPluralize): improve wording | Andrew Peterson | |
| 2013-06-27 | docs(ngMock/$httpBackend): fix testing example | Pete Bacon Darwin | |
| Closes #3075 | |||
| 2013-06-20 | refactor(angular.bootstrap): rename internal function | Pete Bacon Darwin | |
| 2013-06-20 | fix(Angular.js): don't crash on invalid query parameters | Pete Bacon Darwin | |
| 2013-06-19 | fix($http): ensure case-insens. header overriding | Caio Cunha | |
| If user send content-type header, both content-type and default Content-Type headers were sent. Now default header overriding is case-insensitive. | |||
| 2013-06-18 | docs(loader): fix typo and minor semantic error | Ore Landau | |
| 2013-06-13 | docs(select): fix typos in ngOptions | Misha Moroshko | |
| 2013-06-13 | docs($q): fix a few issues | Ore Landau | |
| 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(ngRoute): clarify when gets updated | Pete Bacon Darwin | |
| 2013-06-11 | docs(ngSubmit): clarify that there must be no `action` attribute | Pete Bacon Darwin | |
| 2013-06-10 | chore(docs): fix memory leak in example embed code | Igor Minar | |
| we need to sever the link between the main root scope and the example root scope - this is only needed because we are embedding one app in the other. | |||
| 2013-06-04 | docs(ngTransclude): fix outdated scope definition in example | Marcin Wosinek | |
| 2013-06-04 | docs(Angular.js): clarify ngApp usage | Robbie Ferrero | |
| 2013-06-04 | docs(angular-mocks): fix typo in example | Robb Shecter | |
| fromJSON() should be fromJson() | |||
| 2013-06-04 | docs(sanitize): add @description section | Alan Klement | |
| 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-23 | fix(jqLite): correctly monkey-patch core jQuery methods | Michał Gołębiowski | |
| When real jQuery is present, Angular monkey patch it to fire `$destroy` event. This commit fixes two issues in the jQuery patch: - passing a selector to the $.fn.remove method (only fire `$destroy` on the matched elements) - using `$.fn.html` without parameters as a getter (do not fire `$destroy`) | |||
| 2013-05-21 | style(*): fix up semicolon and var usage | Anatoly Shikolay | |
| Conflicts: src/ng/animation.js src/ng/animator.js src/ng/http.js | |||
| 2013-05-21 | docs(Angular.js): add missing @returns to extend() | Joakim Blomskøld | |
| 2013-05-20 | docs(filters): fix minor typographical error | Daniel Tse | |
| Fix a typographical error "it's" -> "its" in the dateFilter documentation | |||
| 2013-05-20 | doc(filter): remove invalid character | Misha Moroshko | |
| 2013-05-18 | docs(ngMock::$log): improve the `$log.*.logs` descriptions | Chris M | |
| Because ngDoc generation only takes the last segment of a property name, each $log.[error|warn|log...].logs property has the same name and is confusing in the docs. This commit helps this by adding a link to the $log.* method and also an appropriate usage example. | |||
| 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-14 | docs($timeout): minor cleanup | Siddique Hameed | |
| Added a comma separator in the statement Removed the word the from the statement Used whose instead of who's in the following statement Italicized false in the statement Used a comma separator in the statement | |||
| 2013-05-11 | fix($browser): should use first value for a cookie. | Chirayu Krishnappa | |
| With this change, $browser.cookies()["foo"] will behave like docCookies.getItem("foo") where docCookies is defined at https://developer.mozilla.org/en-US/docs/DOM/document.cookie This fixes the issue where, if there's a value for the XSRF-TOKEN cookie value with the path /, then that value is used for all applications in the domain even if they set path specific values for XSRF-TOKEN. Closes #2635 | |||
| 2013-05-10 | docs($scope): clarify documentation for $broadcast | willtj | |
| 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-09 | docs(Angular.js): move forEach docs to correct position | Pete Bacon Darwin | |
| 2013-05-09 | style($compile): clarify argument name | Igor Minar | |
| 2013-05-09 | docs($window): fix example | Pete Bacon Darwin | |
| 2013-05-08 | fix(angular): do not copy $$hashKey in copy/extend functions. | R. Merkert | |
| Copying the $$hashKey as part of copy/extend operations makes little sense since hashkey is used primarily as an object id, especially in the context of the ngRepeat directive. This change maintains the existing $$hashKey of an object that is being copied into (likewise for extend). It is not uncommon to take an item in a collection, copy it, and then append it to the collection. By copying the $$hashKey, this leads to duplicate object errors with the current ngRepeat. Closes #1875 | |||
| 2013-05-08 | feat($cookieStore): $cookieStore.get now parses blank string as blank string | Illniyar | |
| closes #1918 | |||
| 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 | |||
