| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-09-11 | fix(ngdoc.js): update default directive restrict to 'A' | 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(forms.ngdoc): fix spacing in example | Anthony Tran | |
| Closes #3930 | |||
| 2013-09-09 | docs(README): add dashboard link | Richard | |
| Closes #3934 | |||
| 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(tutorial): fix markup for tutorial_03.png diagram | Alexander Kaidalov | |
| Closes #3707 | |||
| 2013-09-05 | docs(tutorial): fix markup for tutorial_04.png diagram | Alexander Kaidalov | |
| 2013-09-05 | docs(tutorial): clarify use of inject() in step 9 | Pete Bacon Darwin | |
| Closes #3718 | |||
| 2013-09-05 | docs(booleanAttrs): improve parameter docs for boolean attributes | James Daily | |
| Closes #3724 | |||
| 2013-09-05 | docs(css_styling_guide): add ng-scope and ng-binding classes | Nick Donohue | |
| I noticed angular was adding these css classes to elements and believe they should be listed in the documentation at this page. The ng-scope class is mentioned in the developer guide, hence the link there, and the ng-binding class is not mentioned anywhere else in the documentation or the guide that I found. Closes #3728 | |||
| 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(bootstrap.ngdoc): clarify bootstrap example | Calvin Fernandez | |
| Clear up confusion about module declaration when using manual bootstrap. | |||
| 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-05 | docs(changelog): add a note about directives ending w/ -start and -end | Igor Minar | |
| Closes #3589 | |||
| 2013-09-05 | chore(release): add script for comparing master and stable branches | Brian Ford | |
| 2013-09-05 | chore(release): start 1.2.0-rc.3 ferocious-twitch iteration | Igor Minar | |
| 2013-09-05 | docs(changelog): correct version number formats in changelog | Igor Minar | |
| 2013-09-05 | chore(changelog): fix link to 1.2.0rc1 | Igor Minar | |
| 2013-09-04 | chore(ngdoc): fix version number parsing for doc version switcher | Igor Minar | |
| 2013-09-04 | chore(release): cut 1.2.0-rc.2 barehand-atomsplitting releasev1.2.0-rc.2 | Igor Minar | |
| 2013-09-04 | chore(grunt): support semver v2 version number format | Igor Minar | |
| previously we couldn't use it because of bower bugs | |||
| 2013-09-04 | chore(changelog): release notes for 1.2.0-rc.2 barehand-atomsplitting | Igor Minar | |
| 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 | chore(ngdocs): ensure $animate is not shared between the docs and the ↵ | Matias Niemelä | |
| example applications | |||
| 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-30 | Merge pull request #3822 from gdi2290/navlist-fix | Jan Kuča | |
| fix(guide): multiline items in navlist | |||
| 2013-08-30 | fix(guide) broken title overflow in navlist | gdi2290 | |
| 2013-08-30 | chore(build): add jenkins_build.sh file | Igor Minar | |
| 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 | chore(readme): add Travis build status | PatrickJS | |
| 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 | |||
| 2013-08-29 | docs($q): document notify behavior | Colin Frei | |
| Closes #3341 | |||
| 2013-08-29 | docs(guide): remove duplicated `require` section | tomazy | |
| 2013-08-29 | chore: fix Jenkins build | Vojta Jina | |
| 2013-08-28 | chore(travis): run bower install twice to make sure it does | Vojta Jina | |
| This is a work-around for Bower/Node.js issue (https://github.com/bower/bower/issues/830). We run `bower install` twice, as the probability of failing twice in a row is very low. I had to extract `bower` task out of the package, because we need to run `bower install` before building and `grunt bower` can fail, which takes down the whole process and therefore it wouldn't build. | |||
| 2013-08-28 | chore(karma): longer reconnect timeout | Vojta Jina | |
| 2013-08-28 | chore(travis): clean up the build output | Vojta Jina | |
