| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-08-16 | fix(docs): update docs top menu links | Igor Minar | |
| 2012-08-06 | docs(styles): fix the cog icon alignment | Igor Minar | |
| 2012-06-15 | fix(doc) firefox icon rendering | Misko Hevery | |
| 2012-06-12 | fix(docs): migrate from $defer to $timeout | Igor Minar | |
| 2012-06-12 | docs(*): simplify doc urls | Igor Minar | |
| we now have two types of namespaces: - true namespace: angular.* - used for all global apis - virtual namespace: ng.*, ngMock.*, ... - used for all DI modules the virual namespaces have services under the second namespace level (e.g. ng.) and filters and directives prefixed with filter: and directive: respectively (e.g. ng.filter:orderBy, ng.directive:ngRepeat) this simplifies urls and makes them a lot shorter while still avoiding name collisions | |||
| 2012-06-02 | doc(app): switch to use $last on ng-repeat | Misko Hevery | |
| 2012-06-02 | doc(app): remove un-needed file | Misko Hevery | |
| 2012-06-02 | docs(ngdocs): cleaned up directive titles | Misko Hevery | |
| 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-04 | chore(docs): re-skin main documentation | Misko Hevery | |
| 2012-04-12 | style(docs-scenario.html): rename <angular/> to AngularJS in the title | Igor Minar | |
| 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-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 | fix(docs): remove ngModelInstant from all examples | Igor Minar | |
| just fixing leftover code after the removal of ngModelInstant | |||
| 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-21 | chore(docs): switch disqus id from angularjs to angularjs-next | Igor Minar | |
| 2012-03-12 | docs(guide.forms): Update forms guide | Vojta Jina | |
| 2012-03-09 | chore(*): refactor all ng: to ng- | Igor Minar | |
| 2012-03-09 | refactor($provide) Rename service -> provider | Vojta Jina | |
| It registers a provider class, so this makes more sense. Breaks Rename $provide.service -> $provide.provider | |||
| 2012-03-08 | docs(css): allow headers to wrap with blue background | Igor Minar | |
| 2012-03-08 | fix(docs): remove undefined from examples with jsfiddle=false | Igor Minar | |
| 2012-03-08 | chore(compiler): change default restriction to attribute only for directives | Misko Hevery | |
| 2012-03-05 | fix(docs): Add $locationProvider methods to the docs example provider | Vojta Jina | |
| - $locationProvider.html5Mode - $locationProvider.hashPrefix Docs example is basically a different application on the same page, but we don't want to instantiate multiple instances of $browser or $location service, so we are overriding these providers to return the instances from parent app. Overriding the service with $provide.value caused a provider to be auto-generated without the necessary hashPrefix and html5Mode apis. | |||
| 2012-02-28 | reafactor: Rename ng:bind-immediate -> ng:model-instant | Vojta Jina | |
| 2012-02-28 | docs(forms): Update API docs for forms | Vojta Jina | |
| - API forms (ng:model + controller, form + controller) - fix some broken links - ng:change, ng:model-instant | |||
| 2012-02-28 | refactor(forms): Even better forms | Vojta 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-28 | docs: evaluate only scripts with type text/javascript | Vojta Jina | |
| 2012-01-25 | docs(compiler): update the compiler docs | Misko Hevery | |
| 2012-01-25 | refactor(directives): connect new compiler | Misko Hevery | |
| - turn everything into a directive | |||
| 2012-01-23 | refactor(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-23 | refactor(scope): separate controller from scope | Vojta 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-17 | fix(docs): disable appcache - causing too much trouble | Igor Minar | |
| 2012-01-17 | docs(*): more fixes | Igor Minar | |
| 2012-01-17 | fix(docs): temp hack to get appcache properly invalidated | Igor Minar | |
| 2012-01-17 | docs(*): various doc fixes | Igor Minar | |
| 2012-01-13 | fix($autoScroll): scroll even if $location is in html5 mode | Vojta Jina | |
| + use autoscroll in docs (ng:include) | |||
| 2012-01-12 | refactor(module): strict separation between module-config / app-runtime | Misko Hevery | |
| 2012-01-10 | feat(module): new module loader | Misko Hevery | |
| 2012-01-10 | feat(ngdocs): support for interface documentation | Misko Hevery | |
| 2012-01-09 | chore(docs): disable disqus for localhost | Igor Minar | |
| it's just slowing down the test runs and debugging | |||
| 2011-11-21 | feat(service.$autoScroll): scroll to hash fragment | Vojta Jina | |
| - whenever hash part of the url changes - after ng:view / ng:include load | |||
| 2011-11-19 | fix(docs): specify disqus_url | Igor Minar | |
| 2011-11-14 | refactor(injector): removed loadModule/ng:module | Misko Hevery | |
| - added module property to doc:example | |||
| 2011-11-14 | refactor(docs): improved the visual rendering of the documentation pages | Misko Hevery | |
