aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content
AgeCommit message (Collapse)Author
2014-02-21docs(guide/i18n): fix url-based links refs to AUTO moduleStéphane Reynaud
Closes #6383
2014-02-21docs(guide/scope): fix url-based links refs to AUTO moduleStéphane Reynaud
Closes #6382
2014-02-21docs(guide/location): fix url-based link to AUTO moduleStéphane Reynaud
Closes #6381
2014-02-21docs(tutorial/step-05): replace minify wiki link with shortened URLJennifer Song
marked has an existing bug where links ending with a ')' will not be parsed correctly. The workaround is to use a shortened URL. The original URL that is being replaced by this commit is http://en.wikipedia.org/wiki/Minification_(programming) . Closes #6377
2014-02-20docs(guide/ie): correct conditional comment to load JSON polyfill for IE7 ↵Tobias Leugger - Vibes
and lower Text specifies "polyfill JSON.stringify for IE7 and below" conditional comment for loading the polyfill was "lte IE 8". Closes #6227
2014-02-20docs(guide/directive): add a more detailed description of isolate scope `&` ↵Brad Williams
bindings More description of "&" bindings, the fact that they trigger evaluation of expressions in the original scope's context. Closes #6255
2014-02-20docs(ie): document IE style attribute interpolation problemRichard Collins
IE has issues with this, it's good to make a note of this. Closes #6329
2014-02-19docs(api): remove ngRoute.$routeParams link from ng sectionAaron Wang
Closes #6219
2014-02-18docs(guide/providers): fix example snippetIgor Minar
Closes #6331 Closes #6332
2014-02-18docs(guide/compiler): remove innacurate statementShai Reznik
The $compile service accepts string as a value and wraps it if needed, so this statement isn't correct, at least by the source code. Closes #6301
2014-02-18docs(tutorial/step-11): add controller to correct objectahliddin
2014-02-17docs(guide/concepts): clarify wordingplmetz
2014-02-17docs(tutorial): add missing @step tagsStéphane Reynaud
Since steps 9 and 11 were missing @step tags they were out of order Closes #6292 Closes #6291
2014-02-16chore(errors): rename folders to match namespacesPeter Bacon Darwin
2014-02-16docs(bike-shed-migration): convert guide <doc:...> examples to <example>...Caitlin Potter
This CL also contains style fixes as the converted scripts caused jshint to complain.
2014-02-16docs(*): fix jshint issues in examplesPeter Bacon Darwin
2014-02-16docs(guide): remove unnecessary "Developer Guide: " from @namesPeter Bacon Darwin
2014-02-16docs(content): fix bad linksPeter Bacon Darwin
2014-02-16docs(api/index): fix ambiguous ngClick linkPeter Bacon Darwin
ngClick appears in more than one module so we must make it explicit.
2014-02-16docs(examples): fix example dependenciesPeter Bacon Darwin
2014-02-16docs(misc): add landing page for the miscellaneous areaPeter Bacon Darwin
2014-02-16docs(tutorial): give the tutorial landing page a better namePeter Bacon Darwin
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-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-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