| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-06-08 | refactor($compile): always call attr.$observe | Misko Hevery | |
| attr.$observe used to call function only if there was interpolation on that attribute. We now call the observation function all the time but we only save the reference to it if interpolation is present. | |||
| 2012-06-08 | chore($compile): clean up compiler tests | Misko Hevery | |
| 2012-06-08 | chore(jqLite): performance reordering | Misko Hevery | |
| 2012-06-04 | docs(guide): correct couple of typos | unknown | |
| 2012-06-04 | fix($timeout): allow calling $timeout.cancel() with undefined | Ali Mills | |
| This is how it worked in rc9, before refactoring $defer into $timeout. | |||
| 2012-06-04 | chore(release): starting 1.0.0rc11 promise-resolution iteration | Igor Minar | |
| 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 | doc(NgModelController) add example and $render documentation | Misko Hevery | |
| Closes#930 | |||
| 2012-06-02 | doc(guide): corrected examples | Misko Hevery | |
| 2012-06-02 | merge cleanup | Misko Hevery | |
| 2012-06-02 | doc(guide): clean up broken links | Misko Hevery | |
| 2012-06-02 | doc(ngdoc): clean up doc generation and add missing documentation links | Misko Hevery | |
| 2012-06-02 | doc(compiler): rewrite | Misko Hevery | |
| 2012-06-02 | docs(introduction): rename | Misko Hevery | |
| 2012-06-02 | doc(i18n): rename | Misko Hevery | |
| 2012-06-02 | docs(expression): rewrite | Misko Hevery | |
| 2012-06-02 | docs(scope): rewrite | Misko Hevery | |
| 2012-06-02 | docs(dependency injecton): rewrite | Misko Hevery | |
| 2012-06-02 | docs(ngdocs): cleaned up directive titles | Misko Hevery | |
| 2012-06-02 | docs(bootstrap): rewritten bootstrap guide | Misko Hevery | |
| 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-02 | feat($location): add $locatonChange[begin|completed] event | Misko Hevery | |
| This allows location change cancelation | |||
| 2012-06-02 | chore($location) switch to use $rootElement | Misko Hevery | |
| 2012-06-02 | feat($rootElement): added application root element | Misko Hevery | |
| Publish the application root element as $rootElement so that it can be injected to other services. | |||
| 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-06-01 | feat($route): resolve local route promises | Misko Hevery | |
| Resolve all promises on route before we fire $afterRouteChange which then renders the ngView. | |||
| 2012-06-01 | feat($injector): provide API for retrieving function annotations | Misko Hevery | |
| 2012-05-24 | fix(jqLite): don't eat event exceptions | Misko Hevery | |
| JQuery does not catch exceptions either, and just lets them pass. This allows the exception to be shown in console. | |||
| 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-24 | fix(favicon): update to aliased icon | Misko Hevery | |
| 2012-05-23 | chore(release): cut the 1.0.0rc10 tesseract-giftwrapping releasev1.0.0rc10 | Igor Minar | |
| 2012-05-23 | docs(changelog): release notes for 1.0.0rc10 tesseract-giftwrapping | Igor Minar | |
| 2012-05-23 | fix($rootScope): TTL exception does not clear $$phase | Misko Hevery | |
| When $digest() throws infinite digest exception it does not properly clear the $phase leaving the scope in an inconsistent state. Closes #979 | |||
| 2012-05-23 | chore(package.json): add simple package.json with npm dependencies | Igor Minar | |
| 2012-05-23 | feat($timeout): add $timeout service that supersedes $defer | Igor Minar | |
| $timeout has a better name ($defer got often confused with something related to $q) and is actually promise based with cancelation support. With this commit the $defer service is deprecated and will be removed before 1.0. Closes #704, #532 | |||
| 2012-05-22 | docs($filter): minor corrections | Daniel Gomes | |
| 2012-05-22 | fix(ngRepeat): expose $first, $middle and $last instead of $position | Max | |
| $position marker doesn't work well in cases when we have just one item in the list because then the item is both the first and last. To solve this properly we need to expose individual $first and $middle and $last flags. BREAKING CHANGE: $position is not exposed in repeater scopes any more To update, search for $position and replace it with one of $first, $middle or $last. Closes #912 | |||
| 2012-05-17 | feat(scope): add event.preventDefault() and event.defaultPrevented | Vojta Jina | |
| 2012-05-17 | refactor(scope.$emit): rename event.cancel() to event.stopPropagation() | Vojta Jina | |
| Breaks event.cancel() is event.stopPropagation() | |||
| 2012-05-17 | fix(jqLite): have same expando format as jQuery | Misko Hevery | |
| 2012-05-15 | chore(release): start 1.0.0rc10 tesseract-giftwrapping iteration | Igor Minar | |
| 2012-05-14 | chore(release): cutting 1.0.0rc9 eggplant-teleportationv1.0.0rc9 | Igor Minar | |
| 2012-05-14 | docs(changelog): release notes for 1.0.0rc9 eggplant-teleportation | Igor Minar | |
