aboutsummaryrefslogtreecommitdiffstats
path: root/docs
AgeCommit message (Collapse)Author
2014-02-16docs(bike-shed-migration): fix url-based links refs to AUTO modulePeter Bacon Darwin
2014-02-16docs(all): convert <pre>/</pre> snippets to GFM snippetsCaitlin Potter
2014-02-16docs(bike-shed-migration): move ng module doc into Angular.jsPeter Bacon Darwin
2014-02-16docs(bike-shed-migration): change tutorial doctype and add @step tagPeter Bacon Darwin
2014-02-16docs(bike-shed-migration): fix up links outside the domainPeter Bacon Darwin
It is safer to use markdown style links and save jsdoc style links for internal links and code references
2014-02-12docs(guide/$location): correct link to HTML5 draft section 5.5 (history api)Stéphane Reynaud
Previous link url is no longer served, responds with bad link (error 404). This change corrects the URL to point to section 5.5 of the draft. The old URL appears to have been removed from service in 2012. Corrects the link to "History API" Closes #6225
2014-02-11docs(tutorial): inject phonecapApp module into unit testJason Schapiro
When I was reading this doc I was thinking "but what about phonecatApp?" and when I looked in the file from the step-11 branch there it is. Should be reflected in the docs as well Closes #6209
2014-02-11docs(guide/index): replace "shold" to "should"Stéphane Reynaud
Replace "shold" to "should" Closes #6216
2014-02-10style(guide): remove wsIgor Minar
2014-02-10docs(guide): add new resource linksJeremy Likness
Added a link to 10 reasons to use and online courses for Angular Closes #6194
2014-02-10style(guide/concepts): remove wsIgor Minar
2014-02-10docs(guide/concepts): removing confusing use of hoistingSequoia McDowell
Closes #6207
2014-02-10docs(faq): add link to MIT licenseMark Miyashita
Closes #6197
2014-02-10docs(concepts): Remove pointless `* 1`sSequoia McDowell
Closes #6206
2014-02-10docs(guide/scope): fix a typoVictor Berchet
Signed-off-by: Caitlin Potter <caitpotter88@gmail.com> Closes #6202
2014-02-07refactor(doc): separate end to end tests into jquery and jqlite filesJulie
2014-02-06docs(misc): fix typo in "getting started" docsasif22
changed "building and application" to "building an application" Closes #6156
2014-02-05refactor(testing): run end to end tests on separate browsers in parallelJulie
2014-02-05chore(testing): run end to end tests on firefox and safari as well as chromeJulie
Update the Travis and Jenkins configs to run protractor tests on Safari and Firefox as well, and make the Travis tests run output XML and turn off color. Fix tests which were failing in Firefox due to clear() not working as expected. Fix tests which were failing in Safari due to SafariDriver not understanding the minus key, and disable tests which SafariDriver has no support for.
2014-02-05chore(end2end): remove old references to the scenario runner and update to ↵Julie
point to protractor
2014-02-04chore(ngdoc): fix misspellling of Naturally in sortVersionsNatruallyNicolas Leger
Corrects "sortVersionsNatrually" method name in `ngdoc.js` in "sortVersionsNaturally"
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-27chore(docs): remove note about removing disqusBrian Ford
2014-01-24docs(search): make sure the forward slash doesn't focus on search while on ↵Matias Niemelä
another input element Closes #5969
2014-01-23docs(guide/filter): link to an example of a filter unit testBrian Ford
2014-01-23docs(ngdoc): ensure module installation docs are accuratePeter Bacon Darwin
The ngMock module is built into a package called angular-mocks, which is not named consistently and the docs were giving invalid info. Closes #5810
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-21chore(docs): add spacing to tutorial buttonsJan Hancic
Added 5px of right margin to tutorial buttons (Previous, Live demom ...). Closes #5901
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-14docs(docs): preserve path to current doc page when switching versionsSebastian Müller
Preserve URL path when switching between doc versions. Closes #4661 Closes #5773
2014-01-13docs(tutorial): fix a typomarcwright
Closes #5769