| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-06-02 | docs(overview): updated overview guide | Misko Hevery | |
| 2012-06-02 | doc(ngdoc): proper label for source and demo section | Misko Hevery | |
| 2012-06-02 | fix(docs): include short words in keywords | Misko Hevery | |
| Short words like $q are now searchable. Closes #967 | |||
| 2012-06-01 | feat($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-01 | chore($route): rename events | Misko Hevery | |
| BREAKING CHANGE rename $beforeRouteChange to $routeChangeStart rename $afterRouteChange to $routeChangeSuccess | |||
| 2012-05-24 | fix(docs): accept return in addition to returns | Misko Hevery | |
| documentation used @return but parser expected @returns, which made the generated documentation incomplete. | |||
| 2012-05-24 | chore(docs): remove generated file | Misko Hevery | |
| 2012-05-24 | chore(docs): remove unused doc_widget.js file | Misko Hevery | |
| 2012-05-24 | chore(docs): correct spacings | Misko Hevery | |
| 2012-05-07 | bug(ie8 docs): docs now work on ie8 | Misko Hevery | |
| 2012-05-04 | chore(docs): re-skin main documentation | Misko Hevery | |
| 2012-04-30 | docs(tutorial): update all the remaining steps | Igor 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-21 | docs(directive): fix transclusion examples | Vojta Jina | |
| 2012-04-20 | docs(guide/controllers): update w/ controller scope separation | Chris Dawson | |
| 2012-04-20 | docs(guide/e2e): fix a link to e2e dsl | pkozlowski-opensource | |
| 2012-04-12 | docs(tutorial): update step-04 to v1.0 | Igor Minar | |
| 2012-04-12 | style(docs-scenario.html): rename <angular/> to AngularJS in the title | Igor Minar | |
| 2012-04-12 | fix($location): properly rewrite urls in html5 mode with base url set | Igor 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-11 | docs($compile): fixed typo | simpulton | |
| 2012-04-11 | chore(ngSanitize): extract $sanitize, ngBindHtml, linkyFilter into a module | Vojta 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-11 | docs($compile): fix typo in the docs templateURL -> templateUrl | Igor Minar | |
| 2012-04-10 | docs(guide.forms): fix the forms dev guide to use ng-disabled | Vojta Jina | |
| 2012-04-10 | docs(tutorial): fix typos in steps 2 and 3 | Igor Minar | |
| 2012-04-09 | fix(docs): change all directive references to use the normalized names | Igor Minar | |
| 2012-04-05 | chore(docs): add nonminified jquery debug version of docs | Igor Minar | |
| 2012-04-04 | docs(tutorial): update tutorial intro + steps 0-3 | Igor 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-04 | chore(docs): restore old tutorial ngdoc files | Igor Minar | |
| 2012-04-04 | fix(docs): remove ngModelInstant from all examples | Igor Minar | |
| just fixing leftover code after the removal of ngModelInstant | |||
| 2012-04-03 | feat(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-03 | Doc fixes in bootstrap | Brad Green | |
| Now makes sense. | |||
| 2012-03-29 | fix(docs): update the example widget regexp for detecting angular.js url | Igor Minar | |
| so that we don't show angular-cookies instead of angular.js | |||
| 2012-03-29 | fix(docs): properly rewrite urls in doc examples at docs-next | Igor Minar | |
| 2012-03-28 | chore(ngCookies): moved to module | Misko Hevery | |
| 2012-03-28 | chore(resource): moved to module | Misko Hevery | |
| 2012-03-27 | Updated manual bootstrap document | Brad Green | |
| Explained why you'd want to manually bootstrap, added contrasting example for automatic vs manual methods. | |||
| 2012-03-27 | Rewrite of Automatic Initialization doc | Brad Green | |
| Added examples, explained the reasons why you initialize the whole app or parts of the page. | |||
| 2012-03-26 | feat($compile): do not interpolate boolean attributes, rather evaluate them | Vojta 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-26 | docs(guide/module): fix syntax error and expectation in test example | Mykhailo Kotsur | |
| 2012-03-26 | docs(guide/unit-testing): fixed typo in code example | Mykhailo Kotsur | |
| 2012-03-23 | doc(guide/module): fix typo | Igor Minar | |
| 2012-03-23 | doc(guide/controller): fix examples | Igor Minar | |
| 2012-03-23 | doc(guide): order topic list in guide sidebar in accordance with overview | Manuel Woelker | |
| Closes #405 | |||
| 2012-03-21 | docs(cookbook/form): fix the example | Igor Minar | |
| Closes #712 | |||
| 2012-03-21 | chore(docs): switch disqus id from angularjs to angularjs-next | Igor Minar | |
| 2012-03-20 | docs(guide/controllers): add a section on testing controllers | Daniel Zen | |
| 2012-03-20 | docs(guide/location): fix example | Igor Minar | |
| 2012-03-20 | docs(guide/started): fix examples | Igor Minar | |
| 2012-03-16 | fix(ngDocSpec): fix broken tests | Igor Minar | |
| 2012-03-16 | feat(injector): infer _foo_ as foo | Igor 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-13 | docs(*): fixing various docs | Igor Minar | |
