| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-03-28 | feat($http): make the transform defaults to an array | Igor Minar | |
| $httpProvider.defaults.transformRequest and $httpProvider.defaults.transformResponse are now arrays containing single function. This makes it easy to add an extra transform fn. adding an extra fn before had to be done in this cluncky way: $httpProvider.defaults.transformResponse = [$httpProvider.defaults.transformResponse, myTransformFn]; after this change, it's simply: $httpProvider.defaults.transformResponse.push(myTransformFn); | |||
| 2012-03-28 | style($http): remove redundant 'use strict' header | Igor Minar | |
| 2012-03-28 | refactor(fromJson/date filter): move date string logic to date filter | Igor Minar | |
| Breaks angular.fromJson which doesn't deserialize date strings into date objects. This was done to make fromJson compatible with JSON.parse. If you do require the old behavior - if at all neeeded then because of json deserialization of XHR responses - then please create a custom $http transform: $httpProvider.defaults.transformResponse.push(function(data) { // recursively parse dates from data object here // see code removed in this diff for hints }); Closes #202 | |||
| 2012-03-28 | chore(ngCookies): moved to module | Misko Hevery | |
| 2012-03-28 | chore(Rakefile): get ready for modules | Misko Hevery | |
| 2012-03-28 | chore(module): move files around in preparation for more modules | Misko Hevery | |
