aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide
AgeCommit message (Collapse)Author
2013-11-14docs(guide/concepts): improve sentence wordingPhillip Alexander
Before: > Let's add some more logic to the example to allow to enter and calculate the costs in different currencies and also pay the invoice. After: > Let's add some more logic to the example that allows us to enter and calculate the costs in different currencies and also pay the invoice. Closes #4903
2013-11-14docs(guide/directive): split long linesPete Bacon Darwin
2013-11-14docs(guide/directive): clarify sentence meaningxdhmoore
Closes #4873
2013-11-13docs(guide/scope): correct scopes exampleandre
Remove reference to `employee` property as it's not used in the example. Inject and use `$rootScope` applying `department` property as mentioned in text. Closes #4839
2013-11-13docs(guide/scope): ensure demo CSS styles work in JSFiddle and PlunkerPete Bacon Darwin
The CSS styling in the ng-scope demo was using CSS classes (`.doc-example-live` and `.show-scope') to prevent the styling for the demo from affecting the entire page. Unfortunately elements containing these classes did not appear in JSFiddle or Plunker when you click edit. This fix moves the `.show-scope' class inside the demo (renaming it `.show-scope-demo`) and removes the reliance on `.doc-example-live` altogether. Closes #4838
2013-11-13docs(guide): fix typoDerek Peterson
Closes #4821
2013-11-13docs(guide/understanding_controller): fix incorrect property referenceAaditya Talwai
Correct " model property `spice` " to " model property `customSpice` " to match the code sample Closes #4812
2013-11-13docs(guide): add ng-newsletter to weekly updates linkAri
Closes #4793
2013-11-13docs(guide): add ng-book link to booksAri
Closes #4792
2013-11-10docs(guide/migration): fix internal linkPete Bacon Darwin
2013-11-08docs(guide/migration): fix up internal linksPete Bacon Darwin
2013-11-08docs(guide/migration): fix link to #2500Brian Ford
2013-11-08docs(guide/migration): add migration guideBrian Ford
2013-11-07docs(guide/filter): Refactor filter guide docsTobias Bosch
This refactors the filter guide docs into a single file. Also removes out of date references to the fact that Angular used to enhance Arrays while evaluating expressions.
2013-11-06docs(guide): delete ancient videoBrad Green
We have links to better videos now on the guide/index page. This one's time has past.
2013-11-06docs(guide/overview): Refactor overview and mvc docsTobias Bosch
Before, there we multiple overview docs: - guide/overview - guide/introduction - guide/dev_guide.mvc - guide/dev_guide.mvc.understanding_model - guide/dev_guide.mvc.understanding_view - guide/concepts Now we have: - guide/introduction: High level description of Angular with the key benefits but without code or any concrete concepts - guide/concepts: explains all important concepts with a simple example and contains deep links to the other parts of the guide. All the old information was moved into existing documents or deleted when they were duplicates.
2013-11-06docs(guide/directive): link to directives API from the top of the pageBrian Ford
2013-11-06docs(guide/providers): add providers documentationBrian Ford
2013-11-05docs(guide/directive): fix transclusion exampleMichal Bendowski
The example about transclusion and scopes worked only because the order of `scope` and `element` arguments is wrong, which means that the `name' property of the scope is not really being updated. To really work, the directive has to define its own scope, either a new child scope or, as is more common with transclusion, an isolated scope. Closes #4774
2013-11-04docs(guide): add SEO4Ajax to the SEO tools listG Lormeau
Closes #4748
2013-11-04docs(guide/understanding-controllers): fix typo in examplejoshbowdoin
Broken - $scope.spicy = 'very'; Works - $scope.spice = 'very'; Closes #4752
2013-11-04docs(overview): improve readabilityJesse Palmer
Inserted a couple of line breaks to increase readability. Closes #4756
2013-10-30docs(guide/injecting-services): fix indentation in exampleAdam Bowen
Closes #4714
2013-10-30docs(guide/e2e-testing): fix typoEl Juli
Closes #4700
2013-10-30docs(guide/understanding_controller): correct grammarandre
Add the word "to" to improve grammar. Closes #4698
2013-10-28docs(guide/directive): fix myDraggable for zoomed pageGabor Csizmadia
If you have zoomed into the page in your browser then the screen coordinate system no longer matches the page coordinate system. To ensure that dragged elements work correctly when zoomed we should use pageX/pageY rather than screenX/screenY. Closes #4687
2013-10-28docs(guide): improve links to booksPete Bacon Darwin
Nested bullet points don't appear very nicely so resorted to nested heading for the Learning Resources and in particular Books sections. Closes #4677
2013-10-28docs(guide): add link to bookChristopher Hiller
2013-10-28docs(guide/compiler): fixed a typoroyling
Closes #4674
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(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(guide/unit-testing): fix typogabriel-tessier
Closes #4601
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(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(guide/directive): improve wordingPete Bacon Darwin
2013-10-26docs(guide/directive): we are registering directives, not controllersJoey Organisak
Closes #4615
2013-10-25docs(guide/bootstrap): fix typoArtemy Tregubenko
Closes #4578
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-23docs(guide/directive,guide/compiler,): drastically improveBrian Ford
2013-10-18docs: correct broken linksVojta Jina
This also contains some whitespace corrections by my editor.
2013-10-14docs(guide/animations): improve wording of sentenceDavid Gonzalez
Closes #4405
2013-10-14docs(guide/directive): improve readability and grammar.sflahave
Closes #4386
2013-10-11docs(guide/controller): improve guidance and examplesPete Bacon Darwin
Remove mention of global controller functions Convert larger examples to runnable demos Remove mention of pre-1.0 controllers, in particular discussion of controller inheritance. TODO: Probably could do with updating to explain the "controller as" syntax at some point. Closes: #4373
2013-10-11docs(guide/controller): use `.controller` syntaxFelix
Use the recommended `module.controller` syntax rather than global functions to define controllers in the examples.