aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2014-01-15chore(release): cut v1.2.9 releasev1.2.9jenkins
2014-01-15docs(changelog): release notes for 1.2.9Peter Bacon Darwin
2014-01-15fix(ngMock): ensure ngAnimate isn't a required mockMatias Niemelä
2014-01-15chore($animate): remove Moz statements from requestAnimationFrameMatias Niemelä
2014-01-14feat($animate): provide support for DOM callbacksMatias Niemelä
2014-01-14feat($animate): use requestAnimationFrame instead of a timeout to issue a reflowMatias Niemelä
Closes #4278 Closes #4225
2014-01-14fix($animate): ensure the final closing timeout respects staggering animationsMatias Niemelä
2014-01-14chore($animate): remove useless and expired testMatias Niemelä
2014-01-14fix($animate): prevent race conditions for class-based animations when ↵Matias Niemelä
animating on the same CSS class Closes #5588
2014-01-14fix($animate): correctly detect and handle CSS transition changes during ↵Matias Niemelä
class addition and removal When a CSS class containing transition code is added to an element then an animation should kick off. ngAnimate doesn't do this. It only respects transition styles that are already present on the element or on the setup class (but not the addClass animation).
2014-01-14fix($animate): avoid accidentally matching substrings when resolving the ↵Matias Niemelä
presence of className tokens
2014-01-14docs(docs): preserve path to current doc page when switching versionsSebastian Müller
Preserve URL path when switching between doc versions. Closes #4661 Closes #5773
2014-01-13docs(provider): replaced coffeescript with comparable javascript exampleLukas Ruebbelke
2014-01-13fix($http): ensure default headers PUT and POST are different objectsHendrixer
Send PUT and POST through copy() to make sure they are not the same. Closes #5742 Closes #5747 Closes #5764
2014-01-13docs(tutorial): fix a typomarcwright
Closes #5769
2014-01-13docs(forEach): remove obsolte noteIgor Minar
2014-01-13docs(angular.forEach): specifies that .forEach filters using .hasOwnPropertyMehul Patel
Closes #5180 Closes #5776
2014-01-13docs(guide): fix a typoPop
2014-01-13docs(CONTRIBUTING.md): add link to coding rulesFrederik Creemers
add a link insie the Submitting a Pull Request section
2014-01-13revert: fix($route): update current route upon $route instantiationIgor Minar
This reverts commit 2b344dbd20777fb1283b3a5bcf35a6ae8d09469d. I think I merged this commit prematurely and in addition to that we found out that it's breaking google apps. Jen Bourey will provide more info at the original PR #5681
2014-01-13fix($rootScope): prevent infinite $digest by checking if asyncQueue is empty ↵Noam Lewis
when decrementing ttl An infinite $digest loop can be caused by expressions that invoke a promise. The problem is that $digest does not decrement ttl unless it finds dirty changes; it should check also if asyncQueue is empty. Generally the condition for decrementing ttl should be the same as the condition for terminating the $digest loop. Fixes #2622
2014-01-11docs(tutorial): referenced test.bat for Windows users in step 2Leniel Macaferi
Closes #5748
2014-01-11docs(ngView): moar better autoscroll docsIgor Minar
Closes #5734
2014-01-11docs(ngView): add param infoGias Kay Lee
Closes #5734 Closes #5741
2014-01-11docs(tutorial): add missing beforeEach(module()) to testSeth Stone
Test snippet was missing this necessary statement that was present in the sample code. Closes #5743
2014-01-10docs(api/index): fix typoRoy Ling
Closes #5738
2014-01-10docs($sce): corrected typo & markup.jesse
the --> that value --> `value` Closes #5735
2014-01-10fix($route): update current route upon $route instantiationDaniel Zimmermann
This fixes cases where the first ngView is loaded in a template asynchronously (such as through ngInclude), as the service will miss the first event otherwise. Closes #4957
2014-01-10docs(i18n): remove use of gendered pronounJeff Cross
2014-01-10docs: update step_04.ngdoc with a clarificationNaomi Black
closes #5730
2014-01-10docs: add clarification in step 2 of the tutorialNaomi Black
2014-01-10chore(release): update cdn versionjenkins
2014-01-10chore(release): start v1.2.9 (1.2.9)jenkins
2014-01-10chore(release): cut v1.2.8 releasev1.2.8jenkins
2014-01-10docs(changelog): release notes for 1.2.8Brian Ford
2014-01-10docs(select): update regexp grouping cheat-sheatAjay Roopakalu
Update the regexp grouping comment to reflect the changes needed for multiline expressions in ng-options for <select>. Closes #5602
2014-01-10feat(select): allow multiline ng-optionsAjay Roopakalu
This patch allows the ng-options value of a <select> element to span multiple lines, which would previously throw an error when used with filters. Closes #5602
2014-01-10fix($http): return responseText on IE8 for requests with responseType setIgor Minar
Closes #4464 Closes #4738 Closes #5636
2014-01-10docs: fix the 'view source' button for snapshotsNarretz
Closes #5590 Closes #5641
2014-01-10docs(\$resource): fixed typo (s/seapph/search)René Wilhelm
Closes #5718
2014-01-10docs($location): fix link to $locationChangeSuccess eventCaitlin Potter
Closes #5717
2014-01-09revert: fix($location): return '/' for root path in hashbang modeIgor Minar
This reverts commit 63cd873fef3207deef30c7a7ed66f4b8f647dc12. The change breaks existing tests of Google apps. The problem is that while we tried to avoid adding #/ to window.location.href unnecessarily we failed doing so. Likely because by setting $path, at some point (during a digest) we try to check if $location changed and we mistake the default '/' with an explicit settign of the path via the `path()` method. This results in us writing the url with '#/' into $browser.url() which updates the window.location by adding "#/" to the url - something we tried to avoid in the first place. I'll reopen PR #5712.
2014-01-09test(docs): add protractor tests for docs appJeff Cross
Closes #5437
2014-01-09chore(build): bugfix for script utilsTobias Bosch
2014-01-09fix($location): return '/' for root path in hashbang modeCaitlin Potter
Before this change, on the root of the application, $location.path() would return the empty string. Following this change, it will always return a root of '/'. Closes #5650 Closes #5712
2014-01-09docs(tutorial): improve experiment instructionsIgor Minar
Closes #5697
2014-01-09feat(build): add a grunt test for running protractor tests extracted from ↵Julie
the docs
2014-01-09fix(docs): Add missing whitespaceRené Wilhelm
2014-01-09fix(docs): Update reference to `$routeProvider.otherwise`stucash
2014-01-09fix(docs): Clarifying versions of IE that need special fixesCraig Younkins