aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2014-03-02docs(error/ng/btstrpd): note that loading angular.js twice can cause the erroramagee
Closes #6502
2014-03-02docs(directives): ensure that the back-to-top directive resets locationPeter Bacon Darwin
Closes #6512 Closes #6499
2014-03-02chore(package.json): update dgeni dependenciesPeter Bacon Darwin
2014-03-02docs(*): ensure jsdoc type expressions are validPeter Bacon Darwin
2014-03-02docs(guide/injecting-services): fix list formatting in Related* sectionsVlad GURDIGA
Closes #5447
2014-03-02docs(loader): change 'MyModule' -> 'myModule'Paolo Moretti
Closes #5393
2014-03-02docs(ngMock): fixes in flush() documentationthenickcox
The docs for the `flush()` method contained a few grammatical errors and were awkwardly worded. Change the explanation of the method to remove errors and read more naturally. Closes #4886
2014-03-01chore(release): update cdn versionjenkins
2014-03-01docs(changelog): release notes for 1.2.14 feisty-cryokinesisv1.2.14Igor Minar
2014-03-01docs($sce/insecurl): mention port in the same origin policyMichele Beltrame
Closes #5759 The default trusted origin appears to be the same protocol+domain+port, non just protocol+domain. I patched the doc accordingly.
2014-02-28style: enable jscs requireRightStickedOperators ruleIgor Minar
2014-02-28docs(forms): generated CSS classes for forms and inputs must have a ng prefixMatias Niemelä
2014-02-28docs(input): update $parsers NgModelController docJason Winnebeck
Make it clear that the result of the $parsers pipeline is what goes to the model value. Closes #5708
2014-02-28docs(tutorial/step-05): fix path for 'phones.json'Daniel
Closes #5460
2014-02-28docs(ngAnimate): add missing 'super' to addClassnosideeffects
2014-02-28fix($animate): delegate down to addClass/removeClass if setClass is not foundMatias Niemelä
Closes #6463
2014-02-28feat($animate): animate dirty, pristine, valid, invalid for form/fieldsYves Brissaud
Add css animations when form or field status change to/from dirty, pristine, valid or invalid. This works like animation system present with ngClass, ngShow, etc. Closes #5378
2014-02-27docs(core): update fromJson return valueslinclark
Dates are not returned, so remove Date from list of return values. Closes #3070
2014-02-27chore(triaging.md): update triaging guidelinesBrian Ford
I removed the complexity metric as suggested by this blog post on triaging: http://www.lostgarden.com/2008/05/improving-bug-triage-with-user-pain.html (see The temptation to assign ‘cost’) Big thanks to @ashleygwilliams and @davidjnelson for their help and feedback!
2014-02-27docs(guides/providers): fix typoPavel Pomerantsev
Closes #5465
2014-02-27fix(jqLite): properly toggle multiple classesPawel Kozlowski
Fixes #4467 Closes #6448
2014-02-27chore(qSpec): fix typosLajos Veres
2014-02-27chore(parseSpec): fix typoLajos Veres
2014-02-27chore(httpSpec): fix typoLajos Veres
2014-02-27chore(filtersSpec): fix typoLajos Veres
2014-02-27chore(ngRepeatSpec): fix typoLajos Veres
2014-02-27chore(AngularSpec): fix typoLajos Veres
2014-02-27chore(animate): fix typo in a commentLajos Veres
2014-02-27docs($sce): fix typoLajos Veres
2014-02-27docs($compile): fix typoLajos Veres
2014-02-27chore(scripts): fix typos in scripts/utils.incLajos Veres
2014-02-27docs(changelog): fix typosLajos Veres
2014-02-26docs($injector): fix typodesertapple
Duplicate 'that' words present in the document, just remove one of them. Closes #6469
2014-02-26docs(guide/resource): add links to ngResource and $resourceJan Hancic
2014-02-26docs(guide): add a new django tutorialMauro
- add a link to a tutorial on intergrating angular and django
2014-02-26docs(errors/infdig): add a common exampleBrad Williams
Mention common cause of error is binding to a new array on every $digest loop. Closes #6465
2014-02-26docs(guide/directive): update directive restrict optionspyriand3r
- add missing 'C' restriction for class names
2014-02-26docs(contribute): add table of contents to contributing docashley williams
- add linked list to top of document - add anchor elements to secondary headings closes #6287
2014-02-26fix($animate): ensure all comment nodes are removed during a leave animationMatias Niemelä
Closes #6403
2014-02-26chore(travis): add gitter configIgor Minar
2014-02-26fix($animate): only block keyframes if a stagger is set to occurMatias Niemelä
Transitions must be blocked so that the initial CSS class can be applied without triggering an animation. Keyframes do not need to be blocked since animations are always triggered on the starting CSS class, however, if a stagger animation is set to occur then all elements for index > 0 should be blocked. This is to prevent the animation from occuring early on before the stagger delay for the given element has passed. With ngAnimate and keyframe animations, IE10 and Safari will render a slight flicker effect caused by the blocking. This fix resolves this issue. Closes #4225
2014-02-26fix(ngAnimate): TypeError Cannot call method 'querySelectorAll' in ↵Stanislav Sysoev
cancelChildAnimations When an element containing both ng-repeat and ng-if directives attempts to remove any items from the repeat collection, the following error is thrown: "TypeError Cannot call method 'querySelectorAll' of undefined". This happens because the cancelChildAnimations code naively belives that the jqLite object always has an element node within it. The fix in this commit addresses to securely check to see if a node was properly extracted before any child elements are inspected. Closes #6205
2014-02-26fix($animate): ensure that animateable directives cancel expired leave ↵Matias Niemelä
animations If enter -> leave -> enter -> leave occurs then the first leave animation will animate alongside the second. This causes the very first DOM node (the view in ngView for example) to animate at the same time as the most recent DOM node which ends up being an undesired effect. This fix takes care of this issue. Closes #5886
2014-02-26test($animate): ensure staggering timeout tests are secureMatias Niemelä
2014-02-26fix($animate): ensure all animated elements are taken care of during the ↵Matias Niemelä
closing timeout Closes #6395
2014-02-26docs(*): fix jsdoc type expressionsPeter Bacon Darwin
These errors in the docs were preventing some parts of the docs from being parsed.
2014-02-26chore(doc-gen): add debug-dump processorPeter Bacon Darwin
2014-02-25revert: fix($location): parse query string when path is empty in hashbang modeIgor Minar
This reverts commit cad717b1171affc3d540cea372576c70b0cb2295. This change causes regressions in existing code and after closer inspection I realized that it is trying to fix an issue that is should not be considered a valid issue. The location service was designed to work against either "hash" part of the window.location when in the hashbang mode or full url when in the html5 mode. This change tries to merge the two modes partially, which is not right. One reason for this is that the search part of window.location can't be modified while in the hashbang mode (a browser limitation), so with this change part of the search object should be immutable and read-only which will only cause more confusion. Relates to #5964
2014-02-26feat($parse): support trailing commas in object & array literalsMichał Gołębiowski
Per ECMAScript 5.1 specification trailing commas are allowed in object and array literals. All modern browsers as well as IE>8 support this syntax. This commit adds support for such syntax to Angular expressions.
2014-02-25chore(docs/contribute): add note about serving the docsBrian Ford