| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-06-06 | chore(ngdocs): setup bower as the package manager for the docs pages | Matias Niemelä | |
| 2013-06-06 | chore(ngdocs): replace google closure library with a NPM module | Matias Niemelä | |
| 2013-06-06 | fix(ngdoc): fix the node warnings that show up during build | Matias Niemelä | |
| 2013-06-06 | feat(ngdocs): provide documentation for the new ngRepeat repeater syntax | Matias Niemelä | |
| 2013-06-06 | chore(AngularPublic): remove angular.noConflict feature | Matias Niemelä | |
| 2013-06-06 | chore(ngdoc): fix deprecated node api path.existsSync -> fs.existsSync | Igor Minar | |
| 2013-06-06 | chore(grunt): add autotest:modules target | Igor Minar | |
| 2013-06-06 | refactor($route): pull $route and friends into angular-route.js | Igor Minar | |
| $route, $routeParams and ngView have been pulled from core angular.js to angular-route.js/ngRoute module. This is was done to in order keep the core focused on most commonly used functionality and allow community routers to be freely used instead of $route service. There is no need to panic, angular-route will keep on being supported by the angular team. Note: I'm intentionally not fixing tutorial links. Tutorial will need bigger changes and those should be done when we update tutorial to 1.2. BREAKING CHANGE: applications that use $route will now need to load angular-route.js file and define dependency on ngRoute module. Before: ``` ... <script src="angular.js"></script> ... var myApp = angular.module('myApp', ['someOtherModule']); ... ``` After: ``` ... <script src="angular.js"></script> <script src="angular-route.js"></script> ... var myApp = angular.module('myApp', ['ngRoute', 'someOtherModule']); ... ``` Closes #2804 | |||
| 2013-06-04 | docs(guide/unit-testing): fix typo | Jared Forsyth | |
| 2013-06-04 | docs(guide/injecting_controllers): add a hint in example | Jared Forsyth | |
| Add a hint to tell the user that they need to click 3 times before an alert is shown. | |||
| 2013-06-04 | docs(ngTransclude): fix outdated scope definition in example | Marcin Wosinek | |
| 2013-06-04 | docs(guide/unit-testing): fix controller test example | Pete Bacon Darwin | |
| 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(index): make menu links relative | Siddique Hameed | |
| Before the Develop drop down menu items were hard coded with an absolute url, which meant that they did not work correctly on local or ci server builds. | |||
| 2013-06-04 | docs(ngClass): clarify the use of object map | Luc Morin | |
| 2013-06-04 | docs(guide/concepts): add comment as a type of directive | Ehsan Ghandhari | |
| 2013-06-04 | docs(guide/understanding_model): improve example consistency | Robb Shecter | |
| 2013-06-04 | docs(guide/compiler): fix some minor language errors | Manuel Kiessling | |
| 2013-06-04 | docs(guide/di): fix some small grammatical issues | Alex Young | |
| 2013-06-04 | docs(validate-commit-msg): fix incorrect comment | Jens Rantil | |
| If you `cd` into the repo, `validate-commit-msg.js` will be in the root of it. | |||
| 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 | |||
