aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content
AgeCommit message (Collapse)Author
2013-04-21docs(guide): minor grammatical changePaulo Ávila
2013-04-19docs(concepts): fix spelling errorMerrick Christensen
2013-04-19docs(overview): correct the input validation exampleJared Beck
The documentation says that the input should be red if you enter invalid values or leave it blank. Because the type="integer" is not supported this does not happen in practice. This fix changes the input type to number and adds an ng-pattern to ensure that the number is an integer.
2013-04-17docs(directive guide) typo in compile/link section@fbiville
The code snippet shows `{{action.description}}`, the explanation referred to it as `{{action.descriptions}}`.
2013-04-16docs(guide.unit-testing): fix typoTimothy Ahong
2013-04-15docs(tutorial): testacular renamed to karmaPete Bacon Darwin
Replaced instances of 'Testacular' with 'Karma' to reflect name change of test runner. Replaced instances of 'http://vojtajina.github.com/testacular' with 'http://karma-runner.github.io/' to reflect dedicated page for Karma Test Runner. Added location of config file needed to start the Karma server. This is still labeled 'testacular.conf.js' and needs file name to be updated in the phone example repo.
2013-04-15doc(overview): add link to angular demo slides to overviewPete Bacon Darwin
2013-04-13docs(module): fix typoSeunghoon Yeon
2013-04-12docs(faq): added note to FAQ re: legacy IE supportuberspeck
2013-04-11docs(guide): Update $locationProvider docs.Prathan Thananart
Default hashPrefix setting is not `'!'`, it's actually `""`. Source: https://github.com/angular/angular.js/blob/master/src/ng/location.js#L472
2013-04-11docs(guide/i18n): fix a typokamagatos
2013-04-11docs(guide/concepts): fix typoBrent Morrow
An event is a user **interaction**, timer event, or network event (response from a server).
2013-04-11docs(guide/concepts): wording changeBrent Morrow
... or when working with --> a <-- third-party library callbacks. ... or when working with third-party library callbacks.
2013-04-11docs(guide): Added $ sign to controller example{Qingping,Dave} Hou
2013-04-11docs(dev-guide): Fixed a typo.urenmj
2013-04-11docs(guide/concepts): wording changeBrent Morrow
2013-04-11docs(guide/expression): wording changesBrent Morrow
2013-04-11docs(guide/directives): give more details about directive declarationLuc Morin
2013-04-11docs(guide/filters): document multiple arguments syntaxColin Kahn
Add example of using a filter with that accepts multiple arguments.
2013-04-11docs(guide): updates for legacy IE7 supportBrian Campbell
- note re: id="ng-app" to bootstrap/IE partials - added doctype/xmlns to markup - add cond comment re: json2/3 to markup
2013-04-06docs(concespts): correct spelling and remove unnecessary wordHeath Matlock
2013-04-04docs(guide): add missing closing div tagFelipe Lahti
2013-04-04docs(guide): fix typo in DI. angualar -> angularFelipe Lahti
2013-04-04docs(directive): fix typoSrinivas Kusunam
2013-04-04Update forms.ngdocJames deBoer
docs(forms): Fixed a typo. render -> $render
2013-03-20docs(directive): Fix entity confusion in example.Arlen Christian Mart Cuss
2013-03-08docs(directive): minor typo fixNiel de la Rouviere
Changed "obeject" to "object"
2013-03-06docs(contribute): add note about running command line as admin on winDave Geddes
2013-03-05chore(Grunt): switch from Rake to GruntDave Geddes
Migrates the Angular project from Rake to Grunt. Benefits: - Drops Ruby dependency - Lowers barrier to entry for contributions from JavaScript ninjas - Simplifies the Angular project setup and build process - Adopts industry-standard tools specific to JavaScript projects - Support building angular.js on Windows platform (really?!? why?!?) BREAKING CHANGE: Rake is completely replaced by Grunt. Below are the deprecated Rake tasks and their Grunt equivalents: rake --> grunt rake package --> grunt package rake init --> N/A rake clean --> grunt clean rake concat_scenario --> grunt build:scenario rake concat --> grunt build rake concat_scenario --> grunt build:scenario rake minify --> grunt minify rake version --> grunt write:version rake docs --> grunt docs rake webserver --> grunt webserver rake test --> grunt test rake test:unit --> grunt test:unit rake test:<jqlite|jquery|modules|e2e> --> grunt test:<jqlite|jquery|modules|end2end|e2e> rake test[Firefox+Safari] --> grunt test --browsers Firefox,Safari rake test[Safari] --> grunt test --browsers Safari rake autotest --> grunt autotest NOTES: * For convenience grunt test:e2e starts a webserver for you, while grunt test:end2end doesn't. Use grunt test:end2end if you already have the webserver running. * Removes duplicate entry for Describe.js in the angularScenario section of angularFiles.js * Updates docs/src/gen-docs.js to use #done intead of the deprecated #end * Uses grunt-contrib-connect instead of lib/nodeserver (removed) * Removes nodeserver.sh, travis now uses grunt webserver * Built and minified files are identical to Rake's output, with the exception of one less character for git revisions (using --short) and a couple minor whitespace differences Closes #199 Conflicts: Rakefile
2013-02-25docs(guide/directives): update obsolete doc referenceVineet Kumar
Replace an obsolete reference to a nonexistent "Creating Widgets" section with a real link to "Creating Components".
2013-02-14docs(guide): fix some invalid javascript in directive documentationDylan Pyle
Use double quotes to maintain consistency with other HTML
2013-02-14docs(guide): Fix typos in concepts/model,view.Jesse Cooke
2013-02-06docs(guide): remove stale info about filters changing DOMIgor Minar
as of v0.10.6 this is not the case any more
2013-02-06docs(tutorial): remove extra back-tick characterThomas Schultz
2013-02-06docs(module): fix code exampletheotheo
2013-02-04docs(contributing): add CLA anchor for deeplinkingIgor Minar
2013-01-29docs(tutorial): fix typoradu
Update docs/content/tutorial/step_00.ngdoc removed redundant verb
2013-01-18docs(contribute): adding npm install to step-by-stepWill Moore
npm install is listed in the dependencies section of the contribute guide but is missing from the step-by-step. This adds it as step 4.
2013-01-18docs(cookbook): change prototype methods to scope methods in BuzzAmir H. Hajizamani
As explained in 'Understanding the Controller Component', Controllers written for new (post 1.0 RC) versions of Angular need to add methods to the scope directly, not the function's prototype. Correcting this example should remove any ambiguity, especially for beginners.
2013-01-18docs(guide): change prototype methods to scope methods in DI examplesAmir H. Hajizamani
As explained in 'Understanding the Controller Component', Controllers written for new (post 1.0 RC) versions of Angular need to add methods to the scope directly, not the function's prototype. Correcting this example should remove any ambiguity, especially for beginners.
2013-01-17doc(guide): Fix examples of $location.html5modeShai Reznik
2013-01-17doc(guide): Fixed typos at the unit tests guideShai Reznik
2013-01-17docs: recommend using Google CDNDaniel Demmel
2013-01-17docs(guide): minor grammar fixesMatt Rohrer
2013-01-13doc(directive): Fix typos in dialog widgetLucas Galfasó
Fixes #1799
2013-01-09Update docs/content/misc/faq.ngdocnaomiblack
Updated the canonical video to a recent one. Fixed a typo.
2013-01-07docs(guide): fix typos in unit test guidekim lokoy
2013-01-05docs(forms): fix code example for a custom form controlPawel Kozlowski
Closes #1021
2013-01-04docs(faq): add info on logo reuse and how to get t-shirts and stickersnaomiblack
2012-12-31docs(guide): change example controller to properly call greet method on greeterMatt Hardy