| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-03-28 | chore(module): move files around in preparation for more modules | Misko Hevery | |
| 2012-03-26 | feat($compile): do not interpolate boolean attributes, rather evaluate them | Vojta Jina | |
| So that we can have non string values, e.g. ng-value="true" for radio inputs Breaks boolean attrs are evaluated rather than interpolated To migrate your code, change: <input ng-disabled="{{someBooleanVariable}}"> to: <input ng-disabled="someBooleanVariabla"> Affected directives: * ng-multiple * ng-selected * ng-checked * ng-disabled * ng-readonly * ng-required | |||
| 2012-03-26 | feat(ngValue): allow radio inputs to have non string values | Vojta Jina | |
| Closes #816 | |||
| 2012-03-23 | fix($compile): create new (isolate) scopes for directives on root elements | Igor Minar | |
| previously we would not create them and it's causing all kinds of issues and accidental leaks Closes #817 | |||
| 2012-03-20 | fix($compile): don't touch static element attributes | Igor Minar | |
| Compiler should not reassign values to element attributes if its not neccessary due to interpolation or special attribute magic (ng-src -> src) This resolves several issues on IE caused by reassigning script.src attribute which caused all of the scripts to be reloaded. | |||
| 2012-03-20 | fix($compile): Merge interpolated css class when replacing an element | Vojta Jina | |
| 2012-03-19 | bug(ie7): incorrectly set all inputs to disabled | Misko Hevery | |
| In ie7 all of the input fields are set to readonly and disabled, because ie7 enumerates over all attributes even if the are not declared on the element. | |||
| 2012-03-19 | fix(compiler): allow transclusion of root elements | Misko Hevery | |
| Fixed an issue where a directive that uses transclusion (such as ngRepeat) failed to link if it was declared on the root element of the compilation tree. (For example ngView or ngInclude including template where ngRepeat was the top most element). | |||
| 2012-03-13 | f(compile): boolean attributes too agresive | Misko Hevery | |
| - compiler would rewrite boolean attributes on all elements. This is too aggressive and interferes with some third-party frameworks | |||
| 2012-03-12 | docs(*): renaming incorrect widget references to control or directive | Igor Minar | |
| 2012-03-12 | fix(svg): normalize class access for SVG | Misko Hevery | |
| 2012-03-09 | chore(*): refactor all ng: to ng- | Igor Minar | |
| 2012-03-08 | chore(compiler): change default restriction to attribute only for directives | Misko Hevery | |
| 2012-02-21 | feat($compiler): Allow attr.$observe() interpolated attrs | Vojta Jina | |
| 2012-02-21 | feat($compile) add locals, isolate scope, transclusion | Misko Hevery | |
| 2012-02-21 | feat($compile): mark scope creation with ng-scope class | Misko Hevery | |
| 2012-02-21 | feat($compile): support compiling text nodes by wrapping them in <span> | Misko Hevery | |
| 2012-01-25 | docs(compiler): update the compiler docs | Misko Hevery | |
| 2012-01-25 | refactor(directives): connect new compiler | Misko Hevery | |
| - turn everything into a directive | |||
| 2012-01-25 | add($compile): add compiler v2.0 - not connected | Misko Hevery | |
| 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-12 | refactor(module): strict separation between module-config / app-runtime | Misko Hevery | |
| 2011-11-14 | refactor(injector): removed loadModule/ng:module | Misko Hevery | |
| - added module property to doc:example | |||
| 2011-11-14 | refactor(injector): $injector is no longer a function. | Misko Hevery | |
| - $injector('abc') -> $injector.get('abc'); - $injector(fn) -> $injector.invoke(null, fn); | |||
| 2011-11-14 | style(docs): make jslint happy - fix some warnings | Vojta Jina | |
| 2011-11-14 | fix(doc) cleanup all api doc link warnings | Misko Hevery | |
| 2011-11-14 | doc(service): update docs for the moved services | Misko Hevery | |
| 2011-11-14 | new(directive): added ng:module directive for loading modules | Misko Hevery | |
| 2011-11-14 | refactor(services): migrate angular.service -> module | Misko Hevery | |
| 2011-11-14 | refactor(injector): switch to injector 2.0 introduce modules | Misko Hevery | |
| 2011-11-14 | refactor(compiler) turn compiler into a service | Misko Hevery | |
| BREAK - remove angular.compile() since the compile method is now a service and needs to be injected | |||
| 2011-11-14 | move(compiler): appease the History God | Misko Hevery | |
| - renamed: src/Compiler.js -> src/service/compiler.js - renamed: test/CompilerSpec.js -> test/service/compilerSpec.js | |||
