| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-04-24 | docs(di): fix typos and grammar | Jeff Pickelman | |
| 2013-04-23 | docs(guide:unit-testing): add an example unit test for directives | Timothy Ahong | |
| 2013-04-22 | docs(compiler): don't drag selected content | Pete Bacon Darwin | |
| In the example with draggable, the mouseDown handler needs to start with an event.preventDefault(). Otherwise the following bug occurs: 1) Select the text of the draggable span by clicking outside the span and dragging the mouse to the left or right through the span. Release the mouse button. 2) Now click on the span's inner text, and start to Drag it. The browser's default functionality that drags highlighted text so that it can be pasted into something else (say a document in a text editor) is invoked. 3) Release the mouse button. Now suddenly, you'll be dragging the span. But you won't be able to place it down on the page. It'll just follow the mouse around until the page is refreshed. Closes: #2465 | |||
| 2013-04-22 | docs(compiler): fix variable scope in drag sample | Keir Mierle | |
| Note that without this fix, if you add a second draggable element, the two instances clobber each other since there is only one set of startx/starty/x/y variables. Here is an example: http://plnkr.co/edit/aGrLXcIo2SuaePuAdfmQ?p=preview. On the surface it looks like it would be fine because you only have one mouse but in practice the start position jumps when you start dragging. Here it is fixed: http://plnkr.co/edit/VuvPasuumtCeiVRisYKQ?p=preview | |||
| 2013-04-22 | docs(forms): fix formatting | Keir Mierle | |
| 2013-04-22 | docs(forms): fix typo | Ron Yang | |
| 2013-04-21 | docs(guide): minor grammatical change | Paulo Ávila | |
| 2013-04-19 | docs(concepts): fix spelling error | Merrick Christensen | |
| 2013-04-19 | docs(overview): correct the input validation example | Jared 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-17 | docs(directive guide) typo in compile/link section | @fbiville | |
| The code snippet shows `{{action.description}}`, the explanation referred to it as `{{action.descriptions}}`. | |||
| 2013-04-16 | docs(guide.unit-testing): fix typo | Timothy Ahong | |
| 2013-04-15 | doc(overview): add link to angular demo slides to overview | Pete Bacon Darwin | |
| 2013-04-13 | docs(module): fix typo | Seunghoon Yeon | |
| 2013-04-11 | docs(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-11 | docs(guide/i18n): fix a typo | kamagatos | |
| 2013-04-11 | docs(guide/concepts): fix typo | Brent Morrow | |
| An event is a user **interaction**, timer event, or network event (response from a server). | |||
| 2013-04-11 | docs(guide/concepts): wording change | Brent Morrow | |
| ... or when working with --> a <-- third-party library callbacks. ... or when working with third-party library callbacks. | |||
| 2013-04-11 | docs(guide): Added $ sign to controller example | {Qingping,Dave} Hou | |
| 2013-04-11 | docs(dev-guide): Fixed a typo. | urenmj | |
| 2013-04-11 | docs(guide/concepts): wording change | Brent Morrow | |
| 2013-04-11 | docs(guide/expression): wording changes | Brent Morrow | |
| 2013-04-11 | docs(guide/directives): give more details about directive declaration | Luc Morin | |
| 2013-04-11 | docs(guide/filters): document multiple arguments syntax | Colin Kahn | |
| Add example of using a filter with that accepts multiple arguments. | |||
| 2013-04-11 | docs(guide): updates for legacy IE7 support | Brian 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-06 | docs(concespts): correct spelling and remove unnecessary word | Heath Matlock | |
| 2013-04-04 | docs(guide): add missing closing div tag | Felipe Lahti | |
| 2013-04-04 | docs(guide): fix typo in DI. angualar -> angular | Felipe Lahti | |
| 2013-04-04 | docs(directive): fix typo | Srinivas Kusunam | |
| 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-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(module): fix code example | theotheo | |
| 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(guide): minor grammar fixes | Matt Rohrer | |
| 2013-01-13 | doc(directive): Fix typos in dialog widget | Lucas Galfasó | |
| Fixes #1799 | |||
| 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 | |||
| 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-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 | |
