| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-09-20 | docs(ngCloak): fix grammar, clarity | Dave Peticolas | |
| Closes #4076 | |||
| 2013-09-19 | docs(ngModelController): clarify issue with isolated scope directive | Pete Bacon Darwin | |
| See #4043 | |||
| 2013-09-19 | docs(input): fix spelling error and reword for clarity | ts-web | |
| 2013-09-19 | doc(ngApp): fix grammar | Dave Peticolas | |
| 2013-09-19 | docs($exceptionHandler): add an example of overriding the handler | Jared Forsyth | |
| Closes #3816 | |||
| 2013-09-19 | docs(ngForm): fix grammar and improve explanation | Dave Peticolas | |
| Closes #4050 | |||
| 2013-09-18 | docs(ngResource): fix typo | Tim Statler | |
| Closes #3835 | |||
| 2013-09-18 | docs(ngShowHide): fix typo | Roberto Bonvallet | |
| 2013-09-18 | fix(scenario): include "not " in error messages if test is inverted | Hubert SABLONNIÈRE | |
| Closes #3840 | |||
| 2013-09-17 | fix($parse): disallow access to window and dom in expressions | Chirayu Krishnappa | |
| 2013-09-17 | docs(input): clarify that `contenteditable` is an HTML5 attribute | James | |
| Closes #3841 | |||
| 2013-09-16 | docs(orderBy): fix typo in orderBy.js documentation | Jesse Palmer | |
| Closes #3838 | |||
| 2013-09-16 | doc(api): fix grammar in a directive description | Dave Peticolas | |
| - Add missing words. - Simplify text. | |||
| 2013-09-16 | docs(api): fix grammar in ngClick description | Dave Peticolas | |
| - Add missing word 'directive'. - Add missing word 'an'. | |||
| 2013-09-14 | docs(guide): fix typo in animation doc | Patrick Drechsler | |
| 2013-09-14 | docs(ngRoute): add missing parameter to $routeChangeError | Umur Kontacı | |
| The first parameter in $routeChangeError is the event object. Closes #3986 | |||
| 2013-09-13 | docs(ngSwitch): fix minor typo | Daniel Tse | |
| Closes #3993 | |||
| 2013-09-13 | docs($browser): add jsdoc tags and fix typo | Ben Tesser | |
| 2013-09-13 | docs(ngController): rephrased the description for clarity | Dean Sofer | |
| 2013-09-13 | docs($http): add examples when calling $http outside $apply | Pete Bacon Darwin | |
| Closes #3996 | |||
| 2013-09-13 | docs($http): explain why $http may not make the request immediately | Dang Nguyen Anh Khoa | |
| I came across this issue today and after researching has found out this thread on so: http://stackoverflow.com/questions/17039998/angular-not-making-http-requests-immediately. It took me quite sometimes to figure out this so I hope the addition in documentation could save somebody else some times and frustration. | |||
| 2013-09-13 | fix(ngOptions): ignore object properties which start with $ | Gowtam Lal | |
| 2013-09-11 | fix(ngSanitize): sanitizer should not accept <!--> as a valid comment | R. Merkert | |
| According to http://validator.w3.org/ , <!--> is not a valid comment and neither is any comment containing the -- substring. | |||
| 2013-09-11 | docs(ngModel): provide link for best practices. | Paxton Hare | |
| Closes #3973 | |||
| 2013-09-11 | docs(scope): clean up grammar and improve clarity | Sam Dornan | |
| Some typos fixed and grammar improved: - withing -> within - life-cycle -> life cycle - extraneous spaces - grammar mistakes - missing commas - reworded unclear statements Closes #3920 | |||
| 2013-09-11 | style(ngForm): simplify restrict difference between form and ngForm | rodyhaddad | |
| 2013-09-11 | docs(ngChange): remove wrong @restrict and add missing @param | rodyhaddad | |
| 2013-09-11 | docs(ng.directives): add correct @restrict for all ng directives | rodyhaddad | |
| 2013-09-11 | docs(Attributes): add missing documentation for $observe method | Butch Peters | |
| - Add proper ngdoc annotations to existing $observe documentation - Add link to directive guide for usage example of $observe - Add note about $observe function parameter signature Closes #3957 | |||
| 2013-09-10 | docs($q): clarify what happens when rejected | naorye | |
| Closes #3943 | |||
| 2013-09-10 | docs(angular.copy): clarify corner cases | jakub-bochenski | |
| The behaviour when null or undefined was passed was not clear. The exception thrown when source == destination was not documented. Closes #3946 | |||
| 2013-09-09 | docs(mock.inject): fix typo | Pete Bacon Darwin | |
| 2013-09-07 | fix(browserTrigger): do not use document.createEvent method | Pete Bacon Darwin | |
| Firefox 23 has deprecated the use of createEvent for transition and animation events. We must now use `new TransitionEvent()` and `new AnimationEvent()` if they are available. But of course IE doesn't support this format correctly so we must wrap the attempt in a try block and revert to document.createEvent if necessary.. | |||
| 2013-09-06 | fix(ngAnimate): check elapsedTime on current event | Matias Niemelä | |
| onAnimationProgress now checks the event's elapsedTime property before checking the originalEvent.elapsedTime property. Use browserTrigger with elapsedTime parameter to trigger animation events | |||
| 2013-09-06 | fix(ngScenario): provide event parameters as object | Matias Niemelä | |
| BREAKING CHANGE: browserTrigger now uses an eventData object instead of direct parameters for mouse events. To migrate, place the `keys`,`x` and `y` parameters inside of an object and place that as the third parameter for the browserTrigger function. | |||
| 2013-09-05 | refactor($animate): use CSS3 transition/animation events instead of ↵ | Matias Niemelä | |
| $timeouts to track ongoing animations Closes #3629 Closes #3874 | |||
| 2013-09-05 | docs(mock.inject): document underscore wrapping syntax | JasonM23 | |
| Add a summary describing the ignored underscore syntax sugar helper, with a simple use case example. Closes #3621 | |||
| 2013-09-05 | docs(booleanAttrs): improve parameter docs for boolean attributes | James Daily | |
| Closes #3724 | |||
| 2013-09-05 | docs(angular.bootstrap): clarify modules parameter | Pete Bacon Darwin | |
| It was not clear what you could pass to specify modules to load in the `module` parameter of this function. The `modules` parameter takes an array. The main case is to provide a String, which is the name of a "predefined" angular module. The side cases are to provide a Function (or an annotated function in the form of an Array), which will be invoked by the injector as a run block. It is not possible to "define" new modules via this parameter. Closes #3692 | |||
| 2013-09-05 | docs(): parameter for html5Mode is boolean | Pete Bacon Darwin | |
| 2013-09-05 | docs($anchorScroll): provide an example of basic usage. | Ben Lesh | |
| Per a request made by Peter Bacon Darwin here: http://www.benlesh.com/2013/02/angular-js-scrolling-to-element-by-id.html?showComment=1370941217879#c8718313084813008967 | |||
| 2013-09-03 | fix(ngView): ensure ngClass works with together with ngView's transclusion ↵ | Matias Niemelä | |
| behavior Closes: #3727 | |||
| 2013-09-03 | fix(ngAnimate): ensure that ngClass is always compiled before enter, leave ↵ | Matias Niemelä | |
| and move animations Closes #3727 Closes #3603 | |||
| 2013-09-03 | chore($rootScope): provide support to execute a function after the digest ↵ | Matias Niemelä | |
| cycle is complete | |||
| 2013-09-03 | fix(ngAnimate): cut down on extra $timeout calls | Matias Niemelä | |
| 2013-09-03 | feat(ngMock): allow passing an object literal as shorthand to module | Merrick Christensen | |
| 2013-09-02 | fix($http): allow empty responses to be cached | jankuca | |
| Closes #3809 | |||
| 2013-08-29 | fix(core): parse IE11 UA string correctly | Chirayu Krishnappa | |
| It's great that IE11 wants to be compatible enough that it doesn't want to be special cased and treated differently. However, as long as one has to have a different code path for IE than for the other supported browsers, we still need to detect and special case it. For instance, our URL parsing code still needs the same workaround the we used for IE10. We still see the same Access denied / TypeError exceptions when setting certain values. FYI, Angular doesn't generally blindly test for IE – we also check the version number. Thanks to modern.ie for the free IE11 test VM. Closes #3682 | |||
| 2013-08-29 | perf(ngBindHtml): watch the original value and sanitize later | Chirayu Krishnappa | |
| 2013-08-29 | fix(ngMocks): $logProvider should not use internal APIs | Adam de Baugh | |
| angular.mocks.$LogProvider $logProvider.debugEnabled(false) is crashing with undefined when run inside karma/jasmine test runner: angular.module('foo', []).config(['$logProvider', function ($logProvider) { $logProvider.debugEnabled(false); }]); Closes #3612 | |||
