| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-06-11 | chore(logos): adding AngularJS and shield logos | Igor Minar | |
| 2012-06-11 | chore(release): start 1.0.0rc12 regression-exterminator release | Igor Minar | |
| quick release to fix $location regression | |||
| 2012-06-11 | chore(release): cutting the 1.0.0rc promise-resolution releasev1.0.0rc11 | Igor Minar | |
| 2012-06-11 | docs(changelog): release notes for 1.0.0rc11 promise-resolution | Igor Minar | |
| 2012-06-10 | test($location): fix tests borked during event renaming | Igor Minar | |
| 2012-06-10 | docs(*): fix various outdated docs and examples | Igor Minar | |
| Closes #1030 | |||
| 2012-06-09 | docs($location): clarify the two-way data-binding note | Igor Minar | |
| Closes #1030 | |||
| 2012-06-08 | fix($compile): correctly merge class attr for replace directives | Max Martinsson | |
| Merging of interpolated class attribute from directive template with replace:true works Closes #1006 | |||
| 2012-06-08 | fix($http): add utf-8 to default Content-Type header (post/put) | Vojta Jina | |
| This fixes special characters issue with MongoLab. https://groups.google.com/d/topic/angular/1T6h7bfZ7Rs/discussion | |||
| 2012-06-08 | feat($compile): simplify isolate scope bindings | Misko Hevery | |
| Changed the isolate scope binding options to: - @attr - attribute binding (including interpolation) - =model - by-directional model binding - &expr - expression execution binding This change simplifies the terminology as well as number of choices available to the developer. It also supports local name aliasing from the parent. BREAKING CHANGE: isolate scope bindings definition has changed and the inject option for the directive controller injection was removed. To migrate the code follow the example below: Before: scope: { myAttr: 'attribute', myBind: 'bind', myExpression: 'expression', myEval: 'evaluate', myAccessor: 'accessor' } After: scope: { myAttr: '@', myBind: '@', myExpression: '&', // myEval - usually not useful, but in cases where the expression is assignable, you can use '=' myAccessor: '=' // in directive's template change myAccessor() to myAccessor } The removed `inject` wasn't generaly useful for directives so there should be no code using it. | |||
| 2012-06-08 | fix(startingTag): make tag name always lowercase | Igor Minar | |
| some browsers (IE) always provide the nodeName as upper-case | |||
| 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 | |
