aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content
AgeCommit message (Collapse)Author
2012-04-04docs(tutorial): update tutorial intro + steps 0-3Igor Minar
also contains all kinds of fixes that I had to make in the docs app to get the tutorial to render correctly
2012-04-04chore(docs): restore old tutorial ngdoc filesIgor Minar
2012-04-04fix(docs): remove ngModelInstant from all examplesIgor Minar
just fixing leftover code after the removal of ngModelInstant
2012-04-03feat(ngModel): update model on each key stroke (revert ngModelInstant)Vojta Jina
It turns out that listening only on "blur" event is not sufficient in many scenarios, especially when you use form validation you always had to use ngModelnstant e.g. if you want to disable a button based on valid/invalid form. The feedback we got from our apps as well as external apps is that the ngModelInstant should be the default. In the future we might provide alternative ways of suppressing updates on each key stroke, but it's not going to be the default behavior. Apps already using the ngModelInstant can safely remove it from their templates. Input fields without ngModelInstant directive will start propagating the input changes into the model on each key stroke.
2012-04-03Doc fixes in bootstrapBrad Green
Now makes sense.
2012-03-27Updated manual bootstrap documentBrad Green
Explained why you'd want to manually bootstrap, added contrasting example for automatic vs manual methods.
2012-03-27Rewrite of Automatic Initialization docBrad Green
Added examples, explained the reasons why you initialize the whole app or parts of the page.
2012-03-26feat($compile): do not interpolate boolean attributes, rather evaluate themVojta Jina
So that we can have non string values, e.g. ng-value="true" for radio inputs Breaks boolean attrs are evaluated rather than interpolated To migrate your code, change: <input ng-disabled="{{someBooleanVariable}}"> to: <input ng-disabled="someBooleanVariabla"> Affected directives: * ng-multiple * ng-selected * ng-checked * ng-disabled * ng-readonly * ng-required
2012-03-26docs(guide/module): fix syntax error and expectation in test exampleMykhailo Kotsur
2012-03-26docs(guide/unit-testing): fixed typo in code exampleMykhailo Kotsur
2012-03-23doc(guide/module): fix typoIgor Minar
2012-03-23doc(guide/controller): fix examplesIgor Minar
2012-03-21docs(cookbook/form): fix the exampleIgor Minar
Closes #712
2012-03-20docs(guide/controllers): add a section on testing controllersDaniel Zen
2012-03-20docs(guide/location): fix exampleIgor Minar
2012-03-20docs(guide/started): fix examplesIgor Minar
2012-03-16feat(injector): infer _foo_ as fooIgor Minar
this is to enable nicer tests: describe('fooSvc', function() { var fooSvc; beforeEach(inject(function(_fooSvc_) { fooSvc = _fooSvc_; })); it('should do this thing', function() { //test fooSvc }); });
2012-03-13docs(*): fixing various docsIgor Minar
2012-03-13docs(links): corrected borken linksMisko Hevery
2012-03-13docs(guide): fix non-working example + add docs for implicit DIDaniel Zen
2012-03-13docs(forms): Change validation tokens to lowercaseVojta Jina
2012-03-13docs(input): Fix some broken links, add missing $, use ng- in examplesVojta Jina
2012-03-13doc(form): updated to reflect the latest changesVojta Jina
2012-03-12fix(forms): prefix all form and control properties with $Igor Minar
2012-03-12docs(directive): add more docs for the directive apiIgor Minar
2012-03-12docs(guide.forms): Update forms guideVojta Jina
2012-03-11doc(fixes): to better support ng-directive notationMisko Hevery
2012-03-08docs(directive, module): add various missing docs and fix existing docsIgor Minar
2012-03-08chore(compiler): change default restriction to attribute only for directivesMisko Hevery
2012-03-07docs($compileProvider.directive): Update iAttrs docsVojta Jina
2012-02-28refactor(directive.ngModel): rename emitValidity -> setValidityVojta Jina
2012-02-28docs(forms): Update API docs for formsVojta Jina
- API forms (ng:model + controller, form + controller) - fix some broken links - ng:change, ng:model-instant
2012-02-28refactor($route): remove .parent(); ng:view scope creationMisko Hevery
2012-02-28refactor(forms): Even better formsVojta Jina
- remove $formFactory completely - remove parallel scope hierarchy (forms, widgets) - use new compiler features (widgets, forms are controllers) - any directive can add formatter/parser (validators, convertors) Breaks no custom input types Breaks removed integer input type Breaks remove list input type (ng-list directive instead) Breaks inputs bind only blur event by default (added ng:bind-change directive)
2012-02-23docs(module): Describe module loadingMisko Hevery
2012-02-21docs($compile): transclude documentationMisko Hevery
2012-01-26docs($compileProvider.directive): fix some typosVojta Jina
2012-01-25docs(compiler): update the compiler docsMisko Hevery
2012-01-25refactor(directives): connect new compilerMisko Hevery
- turn everything into a directive
2012-01-25fix(docs): improper rendering of JSONMisko Hevery
2012-01-23refactor(scope.$watch): rearrange arguments passed into watcher (newValue, ↵Vojta Jina
oldValue, scope) As scopes are injected into controllers now, you have the reference anyway, so having scope as first argument makes no sense… Breaks $watcher gets arguments in different order (newValue, oldValue, scope)
2012-01-23refactor(scope): separate controller from scopeVojta Jina
Controller is standalone object, created using "new" operator, not messed up with scope anymore. Instead, related scope is injected as $scope. See design proposal: https://docs.google.com/document/pub?id=1SsgVj17ec6tnZEX3ugsvg0rVVR11wTso5Md-RdEmC0k Closes #321 Closes #425 Breaks controller methods are not exported to scope automatically Breaks Scope#$new() does not take controller as argument anymore
2012-01-19docs(inputType): fix small typoVojta Jina
2012-01-18docs(guide): update angular version in an exampleludicast
2012-01-17docs(*): more fixesIgor Minar
2012-01-17docs: syntax highlight auto bootstrap code exampleVojta Jina
2012-01-17docs(guide): update the diagramVojta Jina
2012-01-17docs(*): various doc fixesIgor Minar
2012-01-12refactor(module): strict separation between module-config / app-runtimeMisko Hevery
2012-01-10feat(module): new module loaderMisko Hevery