| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-04-16 | fix(ngClass): should remove classes when object is the same but property has ↵ | Pete Bacon Darwin | |
| changed If you wire up ngClass directly to an object on the scope, e.g. ng-class="myClasses", where scope.myClasses = { 'classA': true, 'classB': false }, there was a bug that changing scope.myClasses.classA = false, was not being picked up and classA was not being removed from the element's CSS classes. This fix uses angular.equals for the comparison and ensures that oldVal is a copy of (rather than a reference to) the newVal. | |||
| 2013-04-15 | fix($location): fix URL interception in hash-bang mode | Misko Hevery | |
| Closes #1051 | |||
| 2013-04-15 | docs(rootScope): fix typo | Pete Bacon Darwin | |
| 2013-04-15 | docs(rootScope): Fix various typos | Laurent | |
| 2013-04-15 | docs(Angular.js): fix typo | Laurent | |
| 2013-04-13 | docs(ngController): fix docs link to api/ng.$route | brandonjp | |
| 2013-04-13 | fix(Scenario): correct bootstrap issue on IE | Igor Minar | |
| we need to set the deferred bootstrap flag via window.name after the iframe's src has been set, otherwise IE will reset it to empty string | |||
| 2013-04-11 | fix(ngAnimate): prevent animation on initial page load | Misko Hevery | |
| 2013-04-11 | fix(ngRepeat): prevent initial duplicates | Misko Hevery | |
| 2013-04-11 | style(exceptionHandler): add ws | Lee Leathers | |
| 2013-04-11 | docs(animator): fix typo | winkler1 | |
| 2013-04-11 | docs(jqLite): clarified that children/parent do not support selectors | Christoph Burgdorf | |
| 2013-04-11 | docs: fix typos | Matt Haggard | |
| 2013-04-11 | docs(ngApp): fixed typo | Brent Morrow | |
| Use this directive to auto-bootstrap **an** application. | |||
| 2013-04-11 | fix(ngAnimate): skip animation on first render | Matias Niemelä | |
| 2013-04-11 | feat($animator): allow to globally disable and enable animations | Matias Niemelä | |
| 2013-04-11 | docs(http): spelling, grammar, capitalization, etc. | Artur Ostrega | |
| 2013-04-11 | docs(angular-mocks): fix wording | Brent Morrow | |
| 2013-04-11 | docs($inject): wording change | Brent Morrow | |
| 2013-04-11 | docs($compile): improve docs | David Sanders | |
| 2013-04-11 | feat(ngSwipe): Add ngSwipeRight/Left directives to ngMobile | Braden Shepherdson | |
| These directives fire an event handler on a touch-and-drag or click-and-drag to the left or right. Includes unit tests and docs update. Manually tested on Chrome 26, IE8, Android Chrome and iOS Safari. | |||
| 2013-04-11 | docs($http): fix a typo | Chad Whitacre | |
| 2013-04-11 | docs(animator): Fixed a typo | Patrick | |
| 2013-04-08 | fix($sniffer): $sniffer to support non-vendor prefixes | Matias Niemelä | |
| 2013-04-04 | docs($resource): improve installation section | Igor Minar | |
| 2013-04-03 | fix(ngAnimator): correct polyfillSetup activation and memento generation | William Bagayoko | |
| 2013-04-03 | docs: add animations into docs and directive examples | Matias Niemelä | |
| 2013-04-03 | feat(Scenario): autodisable animations when running e2e tests | Igor Minar | |
| animations cause the dom to contain elements that have been removed from the model but are being animated out. we could teach the e2e runner to wait for animations but that would make all tests slower. it should be quite safe to just disable animations automatically when the app is running via the e2e test runner. this change disables only css animations. we should make additional change that disables js animations as well, but since we don't need this right now I'm punting on it. | |||
| 2013-04-03 | fix(ngShow/ngHide): revert to display:'' for show | Misko Hevery | |
| Regression introduced by ngAnimation SHA: 0b6f1ce5f89f47f9302ff1e8cd8f4b92f837c413 | |||
| 2013-04-03 | style(animator): style cleanup | Igor Minar | |
| 2013-04-02 | feat(ngdocs): added functionality to import and extract contents of external ↵ | Matias Niemelä | |
| files inside docs comment code | |||
| 2013-04-02 | feat(ngAnimate): add support for animation | Misko Hevery | |
| 2013-04-02 | chore(docs): correct few unclosed elements | Misko Hevery | |
| 2013-04-01 | docs(ngSwitch): improve the @usage example | Igor Minar | |
| 2013-03-29 | feat(ngRepeat): add support for custom tracking of items | Misko Hevery | |
| BREAKING CHANGE: It is considered an error to have two items produce the same track by key. (This was tolerated before.) | |||
| 2013-03-29 | feat(Scope): add $watchCollection method for observing collections | Matias Niemelä | |
| The new method allows to shallow watch collections (Arrays/Maps). | |||
| 2013-03-29 | docs(mocks): fix typos | Gert Goet | |
| 2013-03-29 | docs(controller): improve $controller function doc readability | Matthew McComb | |
| Improved $controller function doc readability. | |||
| 2013-03-29 | docs(*): fixed typos | Pascal Borreli | |
| 2013-03-27 | feat(http): support request/response promise chaining | Sylvester Keil | |
| myApp.factory('myAroundInterceptor', function($rootScope, $timeout) { return function(configPromise, responsePromise) { return { request: configPromise.then(function(config) { return config }); response: responsePromise.then(function(response) { return 'ha!'; } }); } myApp.config(function($httpProvider){ $httpProvider.aroundInterceptors.push('myAroundInterceptor'); }); | |||
| 2013-03-27 | fix(mock): prevent NPE when module definition outside of it. | Misko Hevery | |
| 2013-03-20 | chore($ngLocale): generate ngLocale files from the Closure code (includes ↵ | Chirayu Krishnappa | |
| datetimesymbolsext.js) | |||
| 2013-03-20 | fix(ngMobile): Use bracket notation to fix minified version | Jason Als | |
| Added aliases for minification | |||
| 2013-03-20 | refactor(ngRepeat): make use of declared variable | Mark Chapman | |
| Rename unused arrayLength variable to arrayBound and use it inside loop | |||
| 2013-03-20 | chore(select): Fix ngOptions regexp capture comment. | Arlen Christian Mart Cuss | |
| Off-by-one error. | |||
| 2013-03-19 | chore(Angular): remove superfluous fromCharCode function | Javier Mendiara Cañardo | |
| Remove fromCharCode function as it was used only in two inner functions in the code, and its functionality is achieved in several other places by using String.fromCharCode Breaks fromCharCode closure function, String.fromCharCode should be used instead | |||
| 2013-03-19 | docs(filter): Using indefinite article | Bruno Coelho | |
| This doc was using both definite article and indefinite article at the same time. | |||
| 2013-03-15 | fix($location): parse FirefoxOS packaged app urls | Manuel Braun | |
| FirefoxOS uses special URLs like app://{d0419af1-8b42-41c5-96f4-ef4179e52315}/index.html for packaged Apps. Closes #2112 | |||
| 2013-03-15 | $routeChangeSuccess documentation | Jamie Mason | |
| I hope this helps someone, I ran into some issues when following the API as described - handlers of this event receive 3 arguments, not 2. Although this is mentioned [elsewhere](http://docs.angularjs.org/api/ng.$rootScope.Scope#$on) it's not clear when viewing the docs for this behaviour in isolation. The first argument is an Event Object, not the current route. The previous route argument can also be omitted on occasions. | |||
| 2013-03-14 | fix(timezone): correct timezone date filter for 1/2 hour offsets | Sujeet Pillai | |
