| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-06-04 | docs(input): provide explanation of how ngModel will affect the local scope | Luc Morin | |
| 2013-06-04 | docs(guide): format snippets of code in plain text | Eduardo Garcia | |
| 2013-06-04 | docs(overview.ngdoc): clarify wording | adamshaylor | |
| 2013-05-31 | fix(ngController): fix indentation bug which causes example to mess up | Matias Niemelä | |
| 2013-05-30 | chore(docs): add reference to the blog | Lucas Galfasó | |
| Add a reference to the blog at the documentation. | |||
| 2013-05-30 | fix(jqLite): Added optional name arg in removeData | Jeff Cross | |
| jQuery's API for removeData allows a second 'name' argument to just remove the property by that name from an element's data. The absence of this argument was causing some features not to work correctly when combining multiple directives, such as ng-click, ng-show, and ng-animate. | |||
| 2013-05-30 | fix($animator): ensure $animator calculates the highest duration + delay for ↵ | Matias Niemelä | |
| and transitions and animations together | |||
| 2013-05-30 | docs(): Rectify animator.animate documentation | Gias Kay Lee | |
| 2013-05-30 | feat(ngdocs): provide support for inline variable hinting | Matias Niemelä | |
| 2013-05-28 | feat($compile): support multi-element directive | Misko Hevery | |
| By appending directive-start and directive-end to a directive it is now possible to have the directive act on a group of elements. It is now possible to iterate over multiple elements like so: <table> <tr ng-repeat-start="item in list">I get repeated</tr> <tr ng-repeat-end>I also get repeated</tr> </table> | |||
| 2013-05-24 | feat(ngError): add error message compression and better error messages | Igor Minar | |
| - add toThrowNg matcher | |||
| 2013-05-24 | test(matchers): update toThrow matcher | Vojta Jina | |
| 2013-05-23 | docs(guide/unit-testing): add expression example | Siddique Hameed | |
| * Improved developer guide, directive unit testing documentation code with scope expression * Removed documentation block with nothing on it | |||
| 2013-05-23 | feat($swipe): Refactor swipe logic from ngSwipe to $swipe service. | Braden Shepherdson | |
| This new service is used by the ngSwipeLeft/Right directives, and by the separate ngCarousel and swipe-to-delete directives which are under development. | |||
| 2013-05-23 | feat($resource): expose promise instead of only $then | Alexander Shtuchkin | |
| - Instance or collection have `$promise` property which is the initial promise. - Add per-action `interceptor`, which has access to entire $http response object. BREAKING CHANGE: resource instance does not have `$then` function anymore. Before: Resource.query().$then(callback); After: Resource.query().$promise.then(callback); BREAKING CHANGE: instance methods return the promise rather than the instance itself. Before: resource.$save().chaining = true; After: resource.$save(); resourve.chaining = true; BREAKING CHANGE: On success, promise is resolved with the resource instance rather than http response object. Use interceptor to access the http response object. Before: Resource.query().$then(function(response) {...}); After: var Resource = $resource('/url', {}, { get: { method: 'get', interceptor: { response: function(response) { // expose response return response; } } } }); | |||
| 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-23 | docs(input): add missing ngChange directive for email type | David Bennett | |
| All other input types already have it. | |||
| 2013-05-22 | docs(changelog): fix changelog formatting | Igor Minar | |
| 2013-05-22 | docs(changelog): add note about animation breaking change | Igor Minar | |
| 2013-05-22 | style(docs/template): add in missing semicolons | Eddie Monge | |
| Add semicolons where they were missing in the docs section per Google code styling guide. Closes #2736 | |||
| 2013-05-22 | docs(guide/directive): clarify directive priority | Jens Rantil | |
| Fixes #2644. | |||
| 2013-05-22 | chore(release): start 1.1.6 spooky-giraffe iteration | Igor Minar | |
| 2013-05-22 | chore(release): cut the 1.1.5 triangle-squarification releasev1.1.5 | Igor Minar | |
| 2013-05-22 | docs(CHANGELOG.md): release notes for 1.1.5 and 1.0.7 releases | Igor Minar | |
| 2013-05-21 | docs(Angular.js): add missing @returns to extend() | Joakim Blomskøld | |
| 2013-05-21 | docs(tutorial): fix the float issue with the improve docs button | Matias Niemelä | |
| 2013-05-21 | docs(ngScenario): provide examples for element(...).query(fn) | Ben Ripkens | |
| element(selector, label).query(fn) is a very useful function, yet barely explained. The developer guide should show how this function can be used to conditionally execute behavior and assertions. | |||
| 2013-05-21 | doc($compile): clarify compile function return value | Jens Rantil | |
| If a compile function (within a directive) returns a function, it is a post-link function. Closes: #2713 | |||
| 2013-05-21 | docs(guide/type): remove empty "Type" page in guide | Jens Rantil | |
| Closes #1316 | |||
| 2013-05-21 | chore(version.js): remove unused/obsolete script | Igor Minar | |
| 2013-05-21 | chore(package.json): kill version.yaml in favor of package.json | Igor Minar | |
| all versioning info is now in package.json and that's where the build scripts read it from | |||
| 2013-05-21 | chore(package.json): use `devDependencies` instead of `dependencies` | Dan Kohn | |
| 2013-05-20 | fix(ngdocs): fix gen_docs.sh | Matias Niemelä | |
| 2013-05-20 | fix(ngdocs): provide test code for syntax links in docs and fix the syntax ↵ | Matias Niemelä | |
| directive for IE8 | |||
| 2013-05-20 | chore(ngdocs): move angular-bootstrap.js to be generated only inside the ↵ | Matias Niemelä | |
| docs and remove from the build process | |||
| 2013-05-20 | feat($http): add support for aborting via timeout promises | David Bennett | |
| If the timeout argument is a promise, abort the request when it is resolved. Implemented by adding support to $httpBackend service and $httpBackend mock service. This api can also be used to explicitly abort requests while keeping the communication between the deffered and promise unidirectional. Closes #1159 | |||
| 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(guide/compiler): fix grammatical error | David Holmes | |
| "The compilation process happens into two phases." should be "The compilation process happens in two phases." | |||
| 2013-05-20 | doc(filter): remove invalid character | Misha Moroshko | |
| 2013-05-18 | docs(guide::testing): fix link to angular-seed | Pete Bacon Darwin | |
| 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-18 | docs(guide): add API documentation for ngScenario matchers | Ben Ripkens | |
| Matchers are briefly mentioned in the e2e test guide, but there is no documentation for the available matchers. | |||
| 2013-05-18 | docs(tutorial): update test config file name | Andrew Vida | |
| 2013-05-17 | doc(guide:$location): fix example for two way databinding. | Jeremy Wilken | |
| When you are watching the $location.path(), it has to be wrapped in a function since it is not attached to the scope and if you pass a string to $scope.$watch it is evaluated against the $scope. | |||
| 2013-05-17 | test($parse): improve clarity of ternary tests | Zach Snow | |
| 2013-05-16 | chore(docs): fix syntax error in docs.css | Igor Minar | |
| 2013-05-16 | feat($animator): provide support for custom animation events | Matias Niemelä | |
| 2013-05-16 | test($animator): ensure invalid $sniffer.transitions and $sniffer.animations ↵ | Matias Niemelä | |
| flags are caught in animation spec code | |||
| 2013-05-16 | feat(ngdocs): Add FullText search to replace Google search in docs | Matias Niemelä | |
