aboutsummaryrefslogtreecommitdiffstats
path: root/docs
AgeCommit message (Collapse)Author
2012-06-02docs(overview): updated overview guideMisko Hevery
2012-06-02doc(ngdoc): proper label for source and demo sectionMisko Hevery
2012-06-02fix(docs): include short words in keywordsMisko Hevery
Short words like $q are now searchable. Closes #967
2012-06-01feat($route): rename template -> tempalteUrl and add support for inline ↵Misko Hevery
templates BREAKING CHANGE: template in $route definition is now templateUrl To migrate just rename `template` to `templateUrl`.
2012-06-01chore($route): rename eventsMisko Hevery
BREAKING CHANGE rename $beforeRouteChange to $routeChangeStart rename $afterRouteChange to $routeChangeSuccess
2012-05-24fix(docs): accept return in addition to returnsMisko Hevery
documentation used @return but parser expected @returns, which made the generated documentation incomplete.
2012-05-24chore(docs): remove generated fileMisko Hevery
2012-05-24chore(docs): remove unused doc_widget.js fileMisko Hevery
2012-05-24chore(docs): correct spacingsMisko Hevery
2012-05-07bug(ie8 docs): docs now work on ie8Misko Hevery
2012-05-04chore(docs): re-skin main documentationMisko Hevery
2012-04-30docs(tutorial): update all the remaining stepsIgor Minar
I made some diagrams and portions of the text that are stil stale invisible. We'll fix these in the next relese.
2012-04-21docs(directive): fix transclusion examplesVojta Jina
2012-04-20docs(guide/controllers): update w/ controller scope separationChris Dawson
2012-04-20docs(guide/e2e): fix a link to e2e dslpkozlowski-opensource
2012-04-12docs(tutorial): update step-04 to v1.0Igor Minar
2012-04-12style(docs-scenario.html): rename <angular/> to AngularJS in the titleIgor Minar
2012-04-12fix($location): properly rewrite urls in html5 mode with base url setIgor Minar
previously we were doing all kinds of checks to see if we should rewrite the url or not and we were missing many scenarios. not any more. with this change, we rewrite the url unless: - the href is not set - link has target attribute - the absolute url of the link doesn't match the absolute prefix for all urls in our app This also means that ng-ext-link attribute which we previously used to distinguish external links from app links is not necessary any more. apps can just set target=_self to prevent rewriting. BREAKING CHANGE: ng-ext-link directive was removed because it's unnecessary apps that relied on ng-ext-link should simply replace it with target=_self
2012-04-11docs($compile): fixed typosimpulton
2012-04-11chore(ngSanitize): extract $sanitize, ngBindHtml, linkyFilter into a moduleVojta Jina
Create build for other modules as well (ngResource, ngCookies): - wrap into a function - add license - add version Breaks `$sanitize` service, `ngBindHtml` directive and `linky` filter were moved to the `ngSanitize` module. Apps that depend on any of these will need to load `angular-sanitize.js` and include `ngSanitize` in their dependency list: `var myApp = angular.module('myApp', ['ngSanitize']);`
2012-04-11docs($compile): fix typo in the docs templateURL -> templateUrlIgor Minar
2012-04-10docs(guide.forms): fix the forms dev guide to use ng-disabledVojta Jina
2012-04-10docs(tutorial): fix typos in steps 2 and 3Igor Minar
2012-04-09fix(docs): change all directive references to use the normalized namesIgor Minar
2012-04-05chore(docs): add nonminified jquery debug version of docsIgor Minar
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-29fix(docs): update the example widget regexp for detecting angular.js urlIgor Minar
so that we don't show angular-cookies instead of angular.js
2012-03-29fix(docs): properly rewrite urls in doc examples at docs-nextIgor Minar
2012-03-28chore(ngCookies): moved to moduleMisko Hevery
2012-03-28chore(resource): moved to moduleMisko Hevery
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-23doc(guide): order topic list in guide sidebar in accordance with overviewManuel Woelker
Closes #405
2012-03-21docs(cookbook/form): fix the exampleIgor Minar
Closes #712
2012-03-21chore(docs): switch disqus id from angularjs to angularjs-nextIgor Minar
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-16fix(ngDocSpec): fix broken testsIgor 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