aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2013-06-04docs(input): provide explanation of how ngModel will affect the local scopeLuc Morin
2013-06-04docs(guide): format snippets of code in plain textEduardo Garcia
2013-06-04docs(overview.ngdoc): clarify wordingadamshaylor
2013-05-31fix(ngController): fix indentation bug which causes example to mess upMatias Niemelä
2013-05-30chore(docs): add reference to the blogLucas Galfasó
Add a reference to the blog at the documentation.
2013-05-30fix(jqLite): Added optional name arg in removeDataJeff 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-30fix($animator): ensure $animator calculates the highest duration + delay for ↵Matias Niemelä
and transitions and animations together
2013-05-30docs(): Rectify animator.animate documentationGias Kay Lee
2013-05-30feat(ngdocs): provide support for inline variable hintingMatias Niemelä
2013-05-28feat($compile): support multi-element directiveMisko 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-24feat(ngError): add error message compression and better error messagesIgor Minar
- add toThrowNg matcher
2013-05-24test(matchers): update toThrow matcherVojta Jina
2013-05-23docs(guide/unit-testing): add expression exampleSiddique Hameed
* Improved developer guide, directive unit testing documentation code with scope expression * Removed documentation block with nothing on it
2013-05-23feat($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-23feat($resource): expose promise instead of only $thenAlexander 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-23fix(jqLite): correctly monkey-patch core jQuery methodsMichał 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-23docs(input): add missing ngChange directive for email typeDavid Bennett
All other input types already have it.
2013-05-22docs(changelog): fix changelog formattingIgor Minar
2013-05-22docs(changelog): add note about animation breaking changeIgor Minar
2013-05-22style(docs/template): add in missing semicolonsEddie Monge
Add semicolons where they were missing in the docs section per Google code styling guide. Closes #2736
2013-05-22docs(guide/directive): clarify directive priorityJens Rantil
Fixes #2644.
2013-05-22chore(release): start 1.1.6 spooky-giraffe iterationIgor Minar
2013-05-22chore(release): cut the 1.1.5 triangle-squarification releasev1.1.5Igor Minar
2013-05-22docs(CHANGELOG.md): release notes for 1.1.5 and 1.0.7 releasesIgor Minar
2013-05-21docs(Angular.js): add missing @returns to extend()Joakim Blomskøld
2013-05-21docs(tutorial): fix the float issue with the improve docs buttonMatias Niemelä
2013-05-21docs(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-21doc($compile): clarify compile function return valueJens Rantil
If a compile function (within a directive) returns a function, it is a post-link function. Closes: #2713
2013-05-21docs(guide/type): remove empty "Type" page in guideJens Rantil
Closes #1316
2013-05-21chore(version.js): remove unused/obsolete scriptIgor Minar
2013-05-21chore(package.json): kill version.yaml in favor of package.jsonIgor Minar
all versioning info is now in package.json and that's where the build scripts read it from
2013-05-21chore(package.json): use `devDependencies` instead of `dependencies`Dan Kohn
2013-05-20fix(ngdocs): fix gen_docs.shMatias Niemelä
2013-05-20fix(ngdocs): provide test code for syntax links in docs and fix the syntax ↵Matias Niemelä
directive for IE8
2013-05-20chore(ngdocs): move angular-bootstrap.js to be generated only inside the ↵Matias Niemelä
docs and remove from the build process
2013-05-20feat($http): add support for aborting via timeout promisesDavid 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-20docs(filters): fix minor typographical errorDaniel Tse
Fix a typographical error "it's" -> "its" in the dateFilter documentation
2013-05-20doc(guide/compiler): fix grammatical errorDavid Holmes
"The compilation process happens into two phases." should be "The compilation process happens in two phases."
2013-05-20doc(filter): remove invalid characterMisha Moroshko
2013-05-18docs(guide::testing): fix link to angular-seedPete Bacon Darwin
2013-05-18docs(ngMock::$log): improve the `$log.*.logs` descriptionsChris 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-18doc(ngModel): $setViewValue calls all parsers, not formattersJoakim Blomskøld
2013-05-18docs(guide): add API documentation for ngScenario matchersBen Ripkens
Matchers are briefly mentioned in the e2e test guide, but there is no documentation for the available matchers.
2013-05-18docs(tutorial): update test config file nameAndrew Vida
2013-05-17doc(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-17test($parse): improve clarity of ternary testsZach Snow
2013-05-16chore(docs): fix syntax error in docs.cssIgor Minar
2013-05-16feat($animator): provide support for custom animation eventsMatias Niemelä
2013-05-16test($animator): ensure invalid $sniffer.transitions and $sniffer.animations ↵Matias Niemelä
flags are caught in animation spec code
2013-05-16feat(ngdocs): Add FullText search to replace Google search in docsMatias Niemelä