aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content
AgeCommit message (Collapse)Author
2014-02-05chore(end2end): remove old references to the scenario runner and update to ↵Julie
point to protractor
2014-02-03docs(animations): ngClass usage should link to ngClass documentationAlan Rubin
Fixing reference to ngClass documentation Closes #6089
2014-01-31fix($http): update httpBackend to use ActiveXObject on IE8 if necessaryJorg
window.XMLHttpRequest is not always available in IE8 despite it not running in quirks mode, in which case Angular should be using the ActiveXObject instead. Just checking the browser version is taking too many shortcuts. Closes #5677 Closes #5679
2014-01-31docs(guide/templates.css-styling): fix "`{{}}`"Stéphane Reynaud
Replace {{}} to `{{}}` so that "{{}}" is rendered in the HTML page Closes #5950
2014-01-29docs(compile/nodomevents): fix typo ng-mode -> ng-modelManan
correcting directive name to ng-model instead of ng-mode in nodomevents.ngdoc Correcting use of ng-model directive Closes #6036
2014-01-28test(docs): convert example end to end doc tests from scenario runner to ↵Julie
protractor Thanks to jeffbcross, petebacondarwin, btford, jdeboer, tbosch for contributions! Closes #6023
2014-01-28docs(cookbook): remove the cookbook docsJulie
The cookbook docs are now superceded by the guide. They are no longer available in any menus and the only way to find them is to search for them. Remove! Closes #5967
2014-01-23docs(guide/filter): link to an example of a filter unit testBrian Ford
2014-01-21docs(tutorial): update step_12.ngdocmatthewhintzen
This time I feel good about this modification to the document, the code listing on the tutorial page for the animation.js DID NOT match what was actually IN the file for that branch. Updated tutorial to reflect actual contents of file Closes #5922
2014-01-21docs(guide/directive): clarify attr object definitionIgor Minar
Closes #5884
2014-01-21style(guide/directive): remove wsIgor Minar
2014-01-21docs(tutorial): remove 'going forward' nonsenseGeorge Cox
Closes #5914 time/space dimension error
2014-01-21docs(tutorial): fix grammarGeorge Cox
Closes #5909
2014-01-21docs(guide/controller): fix duplicated "and" typoStéphane Reynaud
Remove the second instance of the word "and" from the docs where it was duplicated.
2014-01-18docs(services): use $log service in example consistently with $log APIJoshua Flanagan
The $log provider returns an object and not a function, so this example, which appears to be using the $log provider, should call it as it would be called in a real-world application. Closes #5875
2014-01-17docs(directive): link to directive registration api functionBen McCann
Originally, this issue was regarding documenting `restrict: 'CM'` in the directive guide, but it was pointed out that the restrict documentation is covered in the $compile documentation. Because of this, a link was simply added to the $compile documentation. However, the wording suggests that it's actually linking to the directive registration function, in $compileProvider, so the docs will link there instead. There is a link only a paragraph below to the $compile documentation, so this does not hurt. Closes #5516
2014-01-17docs(api): adds links to top level guidesJeff Jewiss
The main api docs page is probably the main landing page for many devs looking to learn angular, so linking to the main guide pages would likely help. Closes #5869
2014-01-17docs(contributing): add instructions to install grunt-cli/bower globally on ↵Bruce Davidson
unix systems Closes #5814 Closes #5811
2014-01-17docs(tutorial): add missing semicolon to code snippet刘朋飞
Lets encourage people to use semicolons in javascript :> Closes #5834
2014-01-16docs(tutorial): fix typoNeil Rubens
Correction misspelling: easist -> easiest Closes #5850
2014-01-16docs(animations): renamed animate-show-hide to sample-show-hideRob Wormald
This always throws me off - I think it helps to make it clear that the class name is arbitrary, and what matters is the .ng-etc classes. Closes #5848
2014-01-16docs(tutorial): reference node command before scripts\web-server.jsLeniel Macaferi
Amended to also clarify this note in the mac/linux tab. Closes #5845
2014-01-15docs(concepts): fix typos in explanationakerekes
Code uses module names with '2' as suffix while the explanation used the module names without the suffix. The diagram is correct but also does not suffix the module names. Closes #5567
2014-01-15docs(guide/directive): rephrase for consistencyRoy Ling
- referring to `=attr` rather than `=prop` is consistent with note under example with =customerInfo - change `prop` to `attr` (basically `prop` refers to property in JS object, `attr` is for HTML tag) - change the function name in description to match the name in code example Closes #5786
2014-01-13docs(tutorial): fix a typomarcwright
Closes #5769
2014-01-13docs(guide): fix a typoPop
2014-01-11docs(tutorial): referenced test.bat for Windows users in step 2Leniel Macaferi
Closes #5748
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(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-09docs(tutorial): improve experiment instructionsIgor Minar
Closes #5697
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
2014-01-07docs(directives): Fixed typo from HMTL to HTML in line 283Zhong Liang Ong
HTML was mis-spelt as HMTL
2014-01-06docs(tutorial/step-12): replaced a missing apostrophe and fixed grammar errorsJay Goldman
Fixed a missing apostrophe and some grammar in the Animating 'ngClass' with JavaScript section
2014-01-06docs(forms): show directive name instead of link pathRoy Ling
2014-01-06docs(guide/i18n): fix a typoTyler McGinnis
Closes #5651
2014-01-06docs(tutorial): do not recommend global install of KarmaVojta Jina
Closes #5498
2014-01-02fix($httpBackend): use ActiveX XHR when making PATCH requests on IE8Igor Minar
IE8's native XHR doesn't support PATCH requests, but the ActiveX one does. I'm also removing the noxhr error doc because nobody will ever get that error. Closes #2518 Closes #5043
2014-01-02docs(error/ngRepeat/dupes): fix typoDrew Perttula
Closes #5610
2013-12-20docs(guide/forms): update examplemkolodny
Right now, non-integers such as 'aawefwae' are valid. This ensures that only integers are valid. Hopefully that makes the example more powerful. Closes #5501
2013-12-20docs(guide/forms): code style changes for an examplemkolodny
Closes #5499
2013-12-19docs(guide): fix typoKlaus Weiss
Closes #5481
2013-12-19docs(tutorial/step-4): fix typoTony Cronin
Closes #5356
2013-12-18docs(guide): fixed *off typo in angular.injector example commentZachary Babtkis
Closes #5441
2013-12-18docs(tutorial/step-5): fix typojustmiaotou
Closes #5347
2013-12-18docs(guide/directive): improve access to isolate scope informationPete Bacon Darwin
Closes #5329