aboutsummaryrefslogtreecommitdiffstats
path: root/src/loader.js
AgeCommit message (Collapse)Author
2013-09-27docs(angular.Module): fix controller and directive method parametersDavid Bennett
2013-06-18docs(loader): fix typo and minor semantic errorOre Landau
2012-11-22docs(): Fix a couple of typos in the documentationKris Jenkins
2012-11-11docs(angular.module): improve angular.Module#run docsHaralan Dobrev
2012-08-12docs: fix broken links to $compileProvider.directive()Vojta Jina
2012-06-12docs(*): simplify doc urlsIgor 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-04-09fix(docs): change all directive references to use the normalized namesIgor Minar
2012-03-26feat($controller): support controller registration via $controllerProviderIgor Minar
It's now possible to register controllers as: .register('MyCtrl', function($scope) { ... }); // or .register('MyCtrl', ['$scope', function($scope) { ... }); Additionally a module loader shortcut api was added as well: myModule.controller('MyCtr', function($scope) { ... });
2012-03-09chore(*): refactor all ng: to ng-Igor Minar
2012-03-09feat($provide.service): Add $provide.service() for registering a classVojta Jina
2012-03-09refactor($provide) Rename service -> providerVojta Jina
It registers a provider class, so this makes more sense. Breaks Rename $provide.service -> $provide.provider
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-22feat($provide): added constant Misko Hevery
2012-02-22docs(ng:app): Move to other directives namespaceVojta Jina
2012-01-25docs(compiler): update the compiler docsMisko Hevery
2012-01-17docs(*): more docsIgor Minar
2012-01-17docs(*): various doc fixesIgor Minar
2012-01-13feat(module): add runtime blockMisko Hevery
2012-01-12refactor(module): strict separation between module-config / app-runtimeMisko Hevery
2012-01-10feat(module): new module loaderMisko Hevery