aboutsummaryrefslogtreecommitdiffstats
path: root/docs
AgeCommit message (Collapse)Author
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.
2013-10-09docs(tutorial/step11): correct Jasmine Matcher linkMarko Bonaci
Link http://pivotal.github.com/jasmine/jsdoc/symbols/jasmine.Matchers.html is no longer valid. Closes #4329
2013-10-03docs(guide/directive): fix indentation in example codemtaran-google
Closes #4241
2013-10-03docs(guide/directive): clarify use of binding to scopesgdennie
The use of 'angular' as sample text is confusing to the newbie in that they are forced to confirm that the text 'angular' is not a keyword or otherwise referring to a system component. This is changed to a more obvious sample text. The most common form of `ngBind` is moved to the top of the list. Closes #4237
2013-09-30docs(tutorial/step0): fix minor typoRichard Sentino
Closes #4154
2013-09-28docs(guide/overview): fix typoThomas Tuts
Closes #4188
2013-09-27docs(guide/e2e-testing): select also uses ng-model (like input)joscarsson
This is specified for input fields, but not for selects. This change specifies it also for select().
2013-09-25docs(docs.css): prevent `<code>` elements from wrappingMisha Moroshko
Closes #4114
2013-09-25docs(guide/$location): provide a title for section about `replace()`gdennie
Closes #4104
2013-09-25docs(guide/$location): clarify $location service rolegdennie
Clean up confusing use of the term URL to refer to $location as well as 'URL in the browser'. Closes #4103
2013-09-25docs(guide/e2e-testing): Fix typojanhartigan
Closes #4100
2013-09-19docs(guide/i18n): change non-existent de-ge to de-deMaarten Stolte
The de-ge locale does not exist Closes #4053
2013-09-18docs(guide/$location): describe workaround for collocated appsAsh
When using Angular in the root of a domain with HTML5 URLs where there are links to external paths within the same directory, the `otherwise` route handler will catch these external files. This can be fixed by prefixing '.' onto the links to URLs that should be handled by angular routing. Original Issue: #3520 Example of Fix: http://fiddle.jshell.net/fgHf6/3/ Closes #3555
2013-09-18docs(tutorial/step_03): add info about karma-ng-scenario plug-inZachary Friedman
The existing documentation for this step could have people find themselves unable to run the `e2e-test.sh` script. This note added regarding `karma-ng-scenario` will minimize their confusion and allow people to run the script. Closes #4033
2013-09-13docs(guide/e2e_testing): clarify that .enter searches by ng-modelbrakon
2013-09-11docs(tutorial/step-10): fix incorrect link to step-8 testscjmling
Closes #3972
2013-09-11docs(guide/concepts): remove div-clear-tags that break the formattingRandi Hillerøe
Closes #3974
2013-09-09docs(forms.ngdoc): fix spacing in exampleAnthony Tran
Closes #3930
2013-09-05docs(tutorial): fix markup for tutorial_03.png diagramAlexander Kaidalov
Closes #3707
2013-09-05docs(tutorial): fix markup for tutorial_04.png diagramAlexander Kaidalov
2013-09-05docs(tutorial): clarify use of inject() in step 9Pete Bacon Darwin
Closes #3718
2013-09-05docs(css_styling_guide): add ng-scope and ng-binding classesNick 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-05docs(bootstrap.ngdoc): clarify bootstrap exampleCalvin Fernandez
Clear up confusion about module declaration when using manual bootstrap.
2013-08-28docs(guide): update description of $inject mechanism to be a little clearerphanboy4
2013-08-22docs(overview): improve grammarBrian Ford
2013-08-22docs(guide): warn about module creation versus retrievalghodss
Updated Module documentation to include the suggestion of the top-rated comment: "This documentation should warn that "angular.module('myModule', [])" always creates a new module, but "angular.module('myModule')" always retrieves an existing reference."
2013-08-22docs(guide): grammatical corrections to Form and Control definitionsMarcel Morgan
2013-08-16style(docs): replace CRLF by LF in svg header logoReto Aebersold
2013-08-14fix(tutorial): fix broken link caused by bad line breakebeal
2013-08-12docs(guide/unit-testing): add expression exampleSiddique Hameed
* Improved developer guide, directive unit testing documentation code with scope expression * Removed documentation block with nothing on it
2013-08-12docs(guide): remove superfluous });Roland
2013-08-07chore(ngdoc): wrap all pages inside of a container tag for easy stylingMatias Niemelä
2013-08-03docs(guide/controller): fix wording in list of 'Do not use'Mark Campbell
Wording has been changed in two of the examples to read naturally. For example: From: 'Do not use controllers for to run stateless or stateful code shared across controllers' To: 'Do not use controllers for sharing stateless or stateful code across controllers' Closes #3454
2013-08-01revert: fix(location): fix parameter handling on search()Igor Minar
This reverts commit 90532f5e3c2016c99833a4dd779a5c4718c84f4d. The commit contains references to minErr that are not available in the stable branch.
2013-07-31fix(location): fix parameter handling on search()Misko Hevery
2013-07-31docs(header): replace logo.png with logo.svgBrenton
The current logo looks awful on high-density displays. SVG is a better choice because it can scale to any resolution without increasing file size. Amending #2775 to add support for IE 8 by falling back to existing PNG with img.onerror Using relative URLs as directed by @btford and @petebacondarwin. (commit by Brenton Simpson - @appsforartists) Closes #2874 Conflicts: docs/src/templates/css/docs.css docs/src/templates/index.html
2013-07-27docs(tutorial): mention the controller along the scopeRoland
2013-07-27docs(tutorial): add formattingRoland
the string literal {{query}} was missing as it was not enclosed into ``
2013-07-27docs(tutorial): add that the test also creates a controllerRoland
2013-07-23docs(bootstrap): Note that ngScenario requires ngAppBraden Shepherdson
ngScenario expects an ngApp directive to be used, and doesn't work for manually bootstrapped apps. The failure mode is to hang on navigation. Trying to make this wont-fix bug less obscure by documenting it. Eventually Protractor will replace ngScenario and fix this.
2013-07-23docs(index): add seed app link to menu itemRichard John
2013-07-18chore(ngdocs): fix improve button overlapMatias Niemelä
2013-07-15chore(ngdocs): remove autofocus for the filtering searchMatias Niemelä
2013-07-14docs(di): promote registering controllers on modulessdesmond
2013-07-11revert: feat(ngDocs): add links to source for APIBrian Ford
This reverts commit 61fb5863df4afe0fad688a44ff78b245b8439db2.
2013-07-11feat(ngDocs): add links to source for APIJulien Bouquillon
- add tests - the link points to the gruntUtil.getVersion().number tree on github
2013-07-10docs(guide): clarify examplesdesmond
2013-07-10docs(guide): example filter does not conditionally assign a colorsdesmond
2013-07-10docs(guide/di): fix typoRobert Fauver