| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-06-02 | doc(app): remove un-needed file | Misko Hevery | |
| 2012-06-02 | docs(ngdocs): cleaned up directive titles | Misko Hevery | |
| 2012-05-04 | chore(docs): re-skin main documentation | Misko Hevery | |
| 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-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-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-08 | chore(compiler): change default restriction to attribute only for directives | 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-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(docs): improved the visual rendering of the documentation pages | Misko Hevery | |
| 2011-11-14 | refactor($location): merged $locationConfig service into $locationProvider | Misko Hevery | |
| 2011-11-14 | refactor(api): remove type augmentation | Misko Hevery | |
| BREAK: - remove angular.[Object/Array/String/Function] - in templates [].$filter(predicate) and friends need to change to [] | filter:predicate | |||
| 2011-11-14 | refactor(services): migrate angular.service -> module | Misko Hevery | |
| 2011-10-30 | feat(docs): remove the Report Issue link - duplication of disqus | Igor Minar | |
| 2011-10-30 | fix(docs): special case url generation for index pages | Igor Minar | |
| 2011-10-30 | fix(docs): increment load counter only when a valid page is requested | Igor Minar | |
| 2011-10-30 | feat(docs): disqus integration | dandoyon | |
| - add style for disqus threads in css - add loadDisqus method to be called afterPartialLoaded - add div container for disqus threads | |||
| 2011-10-26 | fix(docs): remove unused $browser dependency | Igor Minar | |
| 2011-10-22 | fix(docs): key-binding used old scope apis | Igor Minar | |
| 2011-10-22 | feat(docs): add "Loading..." notification | Igor Minar | |
| 2011-10-22 | fix(docs): update page title only when content loads | Igor Minar | |
| 2011-10-22 | style(docs): change "this" to "scope" in the controller | Igor Minar | |
| 2011-10-11 | chore(formating): clean code to be function() { | Misko Hevery | |
| 2011-09-26 | feat(docs): use html5 history api for all routing in the docs app | Vojta Jina | |
| - Configure our docs app to use new $location with html5 history api! - Update simple node web server to serve index.html for all links (rewritting). - Update .htaccess file to serve index.html for all links (rewritting). - At runtime determine the base href path and attach it to the DOM. We needed the absolute URL to get all browsers to work well. - Because of the above, we also need to dynamically determine all needed js/css resources and add them to the DOM. This was needed because FF6 would eagerly fetch resources with wrong URL since the base element is added to the dom at runtime. - All content html files were moved to the partials directory, because with the new html5 urls it was impossible to tell if request for http://domain/api/angular.filter.html was an html5 url for the html filter doc page, or an xhr/appcache request for the content html file for the html filter. f | |||
| 2011-09-08 | fix(docs): update docs to reflect new $location and fix e2e tests | Vojta Jina | |
| 2011-08-12 | refactor(scope): remove $flush/$observe ng:eval/ng:eval-order | Misko Hevery | |
| 2011-08-02 | feat(scope): new and improved scope implementation | Misko 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-26 | feat(docs): add full offline support | Di Peng | |
| 2011-07-26 | feat(docs): add a changelog link to the footer | Di Peng | |
| 2011-06-30 | fix:docs: properly distinguish between being offline and 404 | Igor Minar | |
| 2011-06-06 | Docs: Error 404 page with simple suggestion for new links | Vojta Jina | |
| 2011-06-06 | fix hashpath prefix for docs/sitemap/etc | Igor Minar | |
| 2011-06-06 | docs app css/js/html rewrite | Igor Minar | |
| 2011-06-06 | Google Analytics - basic page tracking for docs | Vojta Jina | |
| 2011-06-06 | Add doc:tutorial-instructions widget | Vojta Jina | |
| 2011-06-06 | Fixed docs search input with | Vojta Jina | |
| And couple of missing semi-colons... | |||
| 2011-06-06 | new docs skin - WIP | Igor Minar | |
| 2011-06-06 | fix docs landing page redirection | Igor Minar | |
| 2011-06-06 | Move documentation under individual headings | Misko Hevery | |
| 2011-02-03 | Added remainder of the cookbook | Misko Hevery | |
| 2011-02-03 | addded cookbook | Misko Hevery | |
| 2011-02-01 | Developer guide documentation | Misko Hevery | |
