aboutsummaryrefslogtreecommitdiffstats
path: root/docs
AgeCommit message (Collapse)Author
2013-05-09docs(tutorial): add comment about injection annotationPete Bacon Darwin
Closes: #1163
2013-05-08chore(ngAnimate): CSS classes X-setup/X-start -> X/X-activeMatias Niemelä
BREAKING CHANGE: css classes foo-setup/foo-start become foo/foo-active The CSS transition classes have changed suffixes. To migrate rename .foo-setup {...} to .foo {...} .foo-start {...} to .foo-active {...} or for type: enter, leave, move, show, hide .foo-type-setup {...} to .foo-type {...} .foo-type-start {...} to .foo-type-active {...}
2013-05-08feat(ngdocs): add variable type hinting with colorsMatias Niemelä
2013-05-08chore(docs): use done() in gen-docs.jsIgor Minar
2013-04-30docs(guide:directive): add directive controller usageChris Nicola
Specifically adding a directive controller to the example definition and how to use declare injectables to avoid minification errors.
2013-04-29feat(ngdocs): support for HTML table generation from docs codeMatias Niemelä
2013-04-28docs(contribute): add Java as dependencyAnton
Current build process leverages closure jar for javascript minification. If Java is not installed and included in the PATH the build will fail.
2013-04-24docs(di): fix typos and grammarJeff Pickelman
2013-04-23docs(guide:unit-testing): add an example unit test for directivesTimothy Ahong
2013-04-22docs(compiler): don't drag selected contentPete 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-22docs(compiler): fix variable scope in drag sampleKeir 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-22docs(forms): fix formattingKeir Mierle
2013-04-22docs(forms): fix typoRon Yang
2013-04-21docs(guide): minor grammatical changePaulo Ávila
2013-04-19chore(ngDoc): fix a typo with IE warningTyler Akins
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-11fix(ngdocs): improve the animations used in the docs menuMatias Niemelä
2013-04-11fix(ngRepeat): prevent initial duplicatesMisko Hevery
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): 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
... or when working with --> a <-- third-party library callbacks. ... or when working with third-party library callbacks.
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-03docs: add animations into docs and directive examplesMatias Niemelä
2013-04-02feat(ngdocs): added functionality to import and extract contents of external ↵Matias Niemelä
files inside docs comment code
2013-04-02feat(ngAnimate): add support for animationMisko Hevery
2013-03-29docs(guide): add missing closing div tagFelipe Lahti
2013-03-29docs(guide): fix typo in DI. angualar -> angularFelipe Lahti
2013-03-29docs(directive): fix typoSrinivas Kusunam
2013-03-29docs(*): fixed typosPascal Borreli
2013-03-24Update forms.ngdocJames deBoer
docs(forms): Fixed a typo. render -> $render
2013-03-19docs(directive): Fix entity confusion in example.Arlen Christian Mart Cuss
2013-03-15feat(docs): Add Improve this doc link in each doc page, which links to the ↵Shyam Seshadri
edit mode of that file in github
2013-03-13chore(docs): add angular-mobile.js to index.htmlIgor Minar
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