| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-04-04 | Update forms.ngdoc | James deBoer | |
| docs(forms): Fixed a typo. render -> $render | |||
| 2013-03-20 | docs(directive): Fix entity confusion in example. | Arlen Christian Mart Cuss | |
| 2013-03-08 | docs(directive): minor typo fix | Niel de la Rouviere | |
| Changed "obeject" to "object" | |||
| 2013-03-06 | docs(contribute): add note about running command line as admin on win | Dave Geddes | |
| 2013-03-05 | chore(Grunt): switch from Rake to Grunt | Dave 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-25 | docs(guide/directives): update obsolete doc reference | Vineet Kumar | |
| Replace an obsolete reference to a nonexistent "Creating Widgets" section with a real link to "Creating Components". | |||
| 2013-02-14 | docs(guide): fix some invalid javascript in directive documentation | Dylan Pyle | |
| Use double quotes to maintain consistency with other HTML | |||
| 2013-02-14 | docs(guide): Fix typos in concepts/model,view. | Jesse Cooke | |
| 2013-02-06 | docs(guide): remove stale info about filters changing DOM | Igor Minar | |
| as of v0.10.6 this is not the case any more | |||
| 2013-02-06 | docs(tutorial): remove extra back-tick character | Thomas Schultz | |
| 2013-02-06 | docs(module): fix code example | theotheo | |
| 2013-02-04 | docs(contributing): add CLA anchor for deeplinking | Igor Minar | |
| 2013-01-29 | docs(tutorial): fix typo | radu | |
| Update docs/content/tutorial/step_00.ngdoc removed redundant verb | |||
| 2013-01-18 | docs(contribute): adding npm install to step-by-step | Will 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-18 | docs(cookbook): change prototype methods to scope methods in Buzz | Amir 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-18 | docs(guide): change prototype methods to scope methods in DI examples | Amir 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-17 | doc(guide): Fix examples of $location.html5mode | Shai Reznik | |
| 2013-01-17 | doc(guide): Fixed typos at the unit tests guide | Shai Reznik | |
| 2013-01-17 | docs: recommend using Google CDN | Daniel Demmel | |
| 2013-01-17 | docs(guide): minor grammar fixes | Matt Rohrer | |
| 2013-01-13 | doc(directive): Fix typos in dialog widget | Lucas Galfasó | |
| Fixes #1799 | |||
| 2013-01-09 | Update docs/content/misc/faq.ngdoc | naomiblack | |
| Updated the canonical video to a recent one. Fixed a typo. | |||
| 2013-01-07 | docs(guide): fix typos in unit test guide | kim lokoy | |
| 2013-01-05 | docs(forms): fix code example for a custom form control | Pawel Kozlowski | |
| Closes #1021 | |||
| 2013-01-04 | docs(faq): add info on logo reuse and how to get t-shirts and stickers | naomiblack | |
| 2012-12-31 | docs(guide): change example controller to properly call greet method on greeter | Matt Hardy | |
| 2012-12-19 | docs(guide): minor English corrections to the Directive guide | John Fletcher | |
| 2012-12-18 | docs(directive): old syntax | Miško Hevery | |
| 2012-12-10 | docs(guide): fix injector service code example | Romain Neutron | |
| Fix syntax and update code to the latest API | |||
| 2012-12-08 | docs(tutorial): typo fix commandx -> command | Eric Case | |
| 2012-12-07 | doc(concepts): Fix typo in $render() function | János Rusiczki | |
| 2012-11-29 | docs(directive): correct expression, fix typo and re-wrap lines | Daniel Luz | |
| 2012-11-22 | docs(): Fix a couple of typos in the documentation | Kris Jenkins | |
| 2012-11-22 | docs(guide/concepts): some typo/grammar fixes | Dave Clayton | |
| 2012-11-22 | docs(guide/directive): fix typo | John Hume | |
| 2012-11-11 | docs(guide): fix run-on sentence in modules guide | Jamison Dance | |
| 2012-11-11 | docs(tutorial): change module name in step-7 | Jamison Dance | |
| 2012-11-11 | docs(guide/directive): fix names in scope '='; easier to grok | Tim Macfarlane | |
| 2012-11-05 | docs(directive): fix typo | Miško Hevery | |
| 2012-10-31 | chore(testacular): use local testacular version | Sudhir Jonathan | |
| Making testacular a dependency to avoid having to install it globally. (Causes npm issues on some machines) | |||
| 2012-10-31 | docs(guide/location): fix table formatting | Fred Sauer | |
| Fix table formatting so headings are bold, rows are separated by lines, and rows have :hover style | |||
| 2012-10-31 | docs(module): fix typo in example | Tim Macfarlane | |
| fixed example app, `simpleAppModule` should have been `myAppModule`. | |||
| 2012-10-31 | docs(contribute): fix task name for continuous testing | Daniel Luz | |
| 2012-10-31 | fix(doc): typo on FAQ | Daniel Luz | |
| Closes #1493 | |||
| 2012-10-29 | doc(faq): Add Common Pitfalls section | Braden Shepherdson | |
| Describes several common pitfalls new users of Angular fall into that I've observed in #angularjs. | |||
| 2012-10-29 | doc(faq): Fix minor spelling and wording errors | Braden Shepherdson | |
| 2012-10-19 | docs(contribute): add CLA note to code submission section | Igor Minar | |
| 2012-10-19 | docs(contribute): add visible link to github project | Igor Minar | |
| 2012-10-18 | docs(tutorial): replace JsTD with Testacular + drop snapshots | Igor Minar | |
| JsTD references have been replaced with Testacular stuff. snapshots are PITA to maintain so I'm dropping them, everyone loves the Git version anyway. | |||
| 2012-10-05 | docs(downloading): update the downloading docs | Igor Minar | |
