aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2013-10-27docs(guide/e2e-testing): callout ngmodel vs attrnetpoetica
Add note that `input()` fn matches ng-model instead of HTML name attribute. About five users on forums were snagged by this assumption: http://docs.angularjs.org/guide/dev_guide.e2e-testing#comment-898079915 Closes #4655
2013-10-27docs(form): fix typoYuriy Bilogub
Close #4671
2013-10-27chore(ngdocs): improve the docs search placeholder textMatias Niemelä
2013-10-27docs(guide/ie): fix typoLeif Halvard Silli
The escaping of the colon in the example CSS is incorrect. Replace `ng\\:view {` with `ng\:view {` Closes #4570
2013-10-26docs($location): document $location's eventsValentyn Shybanov
Closes #1569 Closes #4446
2013-10-26docs(guide/unit-testing): fix typogabriel-tessier
Closes #4601
2013-10-26docs(error/compile/tplrt): split long linesPete Bacon Darwin
2013-10-26docs(error/compile/tplrt): clarify and grammargdennie
Closes #4503
2013-10-26Clarification stemming from my own issuesgdennie
It is instructive to give literal examples that reflect common (my) experience of the problem. :)
2013-10-26docs(guide/compiler): clarify wordingPete Bacon Darwin
Closes #4668
2013-10-26docs(guide/compiler): fix typodouglascalhoun
Closes #4667
2013-10-26docs(guide/e2e-testing): add note about Protractor replacementPreston Marshall
Add a note to warn people starting new projects about Protractor replacing the current ngScenario way of doing E2E testing. Closes #4644
2013-10-26docs(api/index): improve grammar@supercobra
Closes #4648
2013-10-26docs(guide/directive): correct reference to myDir rather than ngBindJoe Grund
Closes #4647
2013-10-26docs(guide/overview): improve grammar and readabilityGeorge Bonner
Closes #4639
2013-10-26docs(guide/understanding_controller): apply a more intuitive metaphorAndrew Stuart
The BabyCtrl was a bit confusing and GrandChildCtrl seems to make more sense with the whole "scope inheritance" concept. Closes #4634
2013-10-26docs(tutorial/step-11): add missing dependenciesSean Fahey
Closes #4633
2013-10-26docs($q): promises are no longer automatically unwrapped, by defaultrjferguson21
Although it is still possible to turn this on, the feature is deprecated and it is best to remove this mention completely here. Closes #4632
2013-10-26docs(guide/directive): improve wordingPete Bacon Darwin
2013-10-26docs(Angular.js): angular.equals calls itself recursively on objectsthorn0
Closes #4622
2013-10-26docs(http): add missing brace in the 2nd interceptors examplemgechev
Closes #4621
2013-10-26docs(guide/directive): we are registering directives, not controllersJoey Organisak
Closes #4615
2013-10-26docs(ngForm): ensure correct attribute name in usage exampleDavid Bennett
Closes #4611
2013-10-26docs(ngdoc.js): fix usage to display attributes as dash-caseDavid Bennett
Closes 4611
2013-10-26docs(CONTRIBUTING.md): explain we cannot accept localization changesmicole
Angular uses the I18N code from Closure library to generate its own localization files. So there is no point submitting pull requests for these files, since all changes would be lost when we next generate these files. Closes #4610
2013-10-25docs($rootScope): added $eval `locals` parameter documentationCaio Cunha
Added documentation for `locals` parameter of `$eval` method.
2013-10-25fix($compile): attribute bindings should not break due to terminal directivesIgor Minar
Recently we changed the priority of attribute interpolation directive to -100 to ensure that it executes early in the post linking phase. This causes issues with when terminal directives are placed on elements with attribute bindings because the terminal directive will usually have 0 or higher priority which results in attr interpolation directive not being applied to the element. To fix this issue I'm switching the priority back to 100 and making moving the binding setup into the pre-linking function. This means that: - terminal directives with priority lower than 100 will not affect the attribute binding - if a directive wants to add or alter bindings it can do so in the pre-linking phase, as long as the priority of this directive is more than 100 - all post-linking functions will execute after the attribute binding has been set up - all pre-linking functions with directive priority lower than 100 will execute after the attribute bindings have been setup BREAKING CHANGE: the attribute interpolation (binding) executes as a directive with priority 100 and the binding is set up in the pre-linking phase. It used to be that the priority was -100 in rc.2 (100 before rc.2) and that the binding was setup in the post-linking phase. Closes #4525 Closes #4528 Closes #4649
2013-10-25docs(compile): fix typo in 'Attributes' descriptionBrainCrumbz
Closes #4589
2013-10-25docs(guide/bootstrap): fix typoArtemy Tregubenko
Closes #4578
2013-10-25docs(tutorial/step-7): add doctype directive to exampleJesse Palmer
Closes #4552
2013-10-25docs(ngIf): fix typoBalázs Suhajda
Closes #4512
2013-10-25docs(tutorial/step-2): add beforeEach to load moduleDanS
The non-global controller test throws an error because the test does not know about the module and so can not find the controller. This change tells the test about the module so the test can find the controller. Closes #4489
2013-10-25style(injectorSpec): fix typo in "it" descriptionArun Israel
Closes #4483
2013-10-25docs(tutorial/step-5): fix wrong link to services guidephamdt
Closes #4477
2013-10-25docs(guide): rewrite guide landing pageBrad Green
Change landing page to include a set of curated links with subject headings as a guide through Angular's docs and other resources. Closes #4470
2013-10-25docs(guide/e2e-testing): remove superfluous block of textMaarten Stolte
The removed block is repeated from the unit-testing guide and appears in an awkward place in this text. Closes #4456
2013-10-25docs(guide/expression): fix duplicate key error in examplemmieszek
The example that demonstrates how to parse expressions can fail if you pass in the same expression twice. By using "track by $index" we can fix this. Closes #4472
2013-10-24chore(grunt): add jshint to the test taskPete Bacon Darwin
It is very easy to let jshint failures slip into the master build if the jshint task is not part of the standard local grunt tasks.
2013-10-24docs(ngClass): fix typoSam Dornan
Closes #4471
2013-10-24docs(rootScope): add example of using a listener function for $watchWesley Cho
Closes #4451
2013-10-24chore(validate-commit-msg.js): increase the max line limit for commit ↵Igor Minar
messages from 70 to 100
2013-10-24style($route): fix line lengthPete Bacon Darwin
2013-10-24fix($animate): skip unnecessary addClass/removeClass animationsMatias Niemelä
Skip addClass animations if the element already contains the class that is being added to element. Also skip removeClass animations if the element does not contain the class that is being removed. Closes #4401 Closes #2332
2013-10-24docs(ngModelController): $parent can help isolate scope directivesbasarat
2013-10-24docs(error/multidir): improve the sentence fluencyCloudDueling.com
Closes #4449
2013-10-24docs($routeProvider): document route.resolve rejectionJosh Schumacher
Add documentation that the $routeChangeError event is fired when a route resolve promise is rejected Closes #4447
2013-10-24docs(select): fix typowiebl
Closes #4433
2013-10-24docs(tutorial/step_00): reword sentence to make senseWalter Higgins
Closes #4429
2013-10-24docs(ngBindHtml): add exampleNicolas Brugneaux
Closes #4427
2013-10-24fix($compile): instantiate controlers when re-entering compilationIgor Minar
When we re-enter compilation either due to async directive templates or element transclude directive we need to keep track of controllers to instantiate during linking. This piece of info was missing when re-entering compilation and that's what this commit fixes. I also reordered the properties in the previousCompileContext object. Closes #4434 Closes #4616