aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide
AgeCommit message (Collapse)Author
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-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
2011-12-07docs(guide): fix $xhr -> $http linksIgor Minar
2011-12-07fix(filter): remove the $ prefix from filter service idsIgor Minar
2011-11-28docs(guide): fix directives guide docsIgor Minar
2011-11-14refactor(injector): removed loadModule/ng:moduleMisko Hevery
- added module property to doc:example
2011-11-14del($eager): removed the support for $eager servicesMisko Hevery
2011-11-14style(docs): make jslint happy - fix some warningsVojta Jina
2011-11-14fix(doc) cleanup all dev guide doc link warningsMisko Hevery
2011-11-14feat(bootstrap): added angular.bootstrap methodMisko Hevery
2011-11-14fix(doc) cleanup all api doc link warningsMisko Hevery
2011-11-14refactor($location): merged $locationConfig service into $locationProviderMisko Hevery
2011-11-14chore(scenario tests): make scenario tests pass againMisko Hevery
2011-11-13fix(docs.guide): fix $location exampleVojta Jina
2011-10-26feat(docs): Add scenario runner into dev guideVojta Jina
And update the link in the tutorial as well...
2011-10-26feat(bootstrap): drop angular.js file name restrictions for autobindIgor Minar
The last script element in the dom is always us if the script that contains angular is loaded synchronously. For async loading manual bootstrap needs to be performed. Close #621
2011-10-20fix(compiler): revert 8611ebe6 - calling \$digest after linkingIgor Minar
Change introduced by me in 8611ebe6 results in considerable inefficiencies when the compiler and linker is used from within a widget, in which case, we call $digest unnecessary since it will be called by the $apply which called the directive/widget in the first place. There are only two places when the extra $digest call can be useful - when manually bootstrapping the app or in tests. However even in tests this behavior can result in unwanted results (especially when ng:controller is involved). So it is better to leave it for the developer to call $digest when it is really needed.
2011-10-14docs(forms): fix devguide forms example codeIgor Minar
2011-10-13docs($location): Html5 -> HTML5Igor Minar
2011-10-13docs($location): update replace() docsIgor Minar
2011-10-13docs($location): fix $config -> $locationConfig in docsIgor Minar
2011-10-12docs(dev_guide.bootstrap.auto_bootstrap): fixing a typoIgor Minar
2011-10-12docs(*): remove @workInProgress from everywhereIgor Minar
it's not useful any more and it only makes the docs look ugly
2011-10-11chore(formating): clean code to be function() {Misko Hevery
2011-10-11feat(forms): new and improved formsMisko Hevery
2011-10-07fix(docs): rename doc dev_guide.templates.css to dev_guide.templates.css-stylingDhruv Manek
Closes #580
2011-09-08doc($location): $location docs + using $location guideVojta Jina
2011-09-02docs(guide/tutorial/misc): sync with google docsIgor Minar
2011-08-02feat(scope): new and improved scope implementationMisko Hevery
- Speed improvements (about 4x on flush phase) - Memory improvements (uses no function closures) - Break $eval into $apply, $dispatch, $flush - Introduced $watch and $observe Breaks angular.equals() use === instead of == Breaks angular.scope() does not take parent as first argument Breaks scope.$watch() takes scope as first argument Breaks scope.$set(), scope.$get are removed Breaks scope.$config is removed Breaks $route.onChange callback has not "this" bounded
2011-07-29doc(guide): various fixes and improvementsIgor Minar
2011-06-21Update fixed docs content (guide)Vojta Jina
Couple of typos fixed: * indentation * batchLogbatchLog -> batchLog * start periodic checking * missing brace
2011-06-15docs - various doc fixesIgor Minar
2011-06-15docs - stripping extra new linesIgor Minar
2011-06-06yet another docs batchIgor Minar
2011-06-06fix wrapping api links into code elementIgor Minar
2011-06-06new batch of docsIgor Minar
2011-06-06fixing broken linksIgor Minar
2011-06-06Move documentation under individual headingsMisko Hevery