| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-09-20 | chore(sce): remove unused function | Chirayu Krishnappa | |
| 2013-09-20 | fix(ngInclude): don't break attribute bindings on ngInclude-ed element | Brian Ford | |
| BREAKING CHANGE: ngInclude's priority is now set to 1000 It's quite rare for anyone to depend on explicity directive priority, but if a custom directive that needs to run before ngInclude exists, it should have its priority checked and adjusted if needed. Closes #3793 | |||
| 2013-09-20 | fix(ngView): IE8 regression due to expando on non-element nodes | Igor Minar | |
| This fixes the "TypeError: Object doesn't support this property or method" error on IE8, when view templates contain leading white-space. Closes #3971 | |||
| 2013-09-20 | docs(ngClass): fix grammar | Dave Peticolas | |
| Closes #4061 | |||
| 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 | |
