This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11610,7 +11610,7 @@ This release also contains all bug fixes available in [1.0.2](#1.0.2).
11610
11610
- allow defining route async dependencies as promises and defer route change until all promises
11611
11611
are resolved
11612
11612
([885fb0dd](https://github.com/angular/angular.js/commit/885fb0dd0743859a8985c23e4d0c1855a2be711e))
11613
- - rename template -> tempalteUrl and add support for inline templates
11613
+ - rename template -> templateUrl and add support for inline templates
11614
11614
([0a6e464a](https://github.com/angular/angular.js/commit/0a6e464a93d9a1e76a624b356054ce9ca4015f55))
11615
11615
- **$compile:** simplify isolate scope bindings and introduce true two-way data-binding between
11616
11616
parent scope and isolate scope
Original file line number Diff line number Diff line change @@ -11935,13 +11935,13 @@ describe('$compile', function() {
11935
11935
testReplaceElementCleanup ( { } ) ;
11936
11936
} ) ;
11937
11937
it ( 'should clean data of elements removed for directive templateUrl' , function ( ) {
11938
- testReplaceElementCleanup ( { asyncTmeplate : true } ) ;
11938
+ testReplaceElementCleanup ( { asyncTemplate : true } ) ;
11939
11939
} ) ;
11940
11940
it ( 'should clean data of elements transcluded into directive template' , function ( ) {
11941
11941
testReplaceElementCleanup ( { transclude : true } ) ;
11942
11942
} ) ;
11943
11943
it ( 'should clean data of elements transcluded into directive templateUrl' , function ( ) {
11944
- testReplaceElementCleanup ( { transclude : true , asyncTmeplate : true } ) ;
11944
+ testReplaceElementCleanup ( { transclude : true , asyncTemplate : true } ) ;
11945
11945
} ) ;
11946
11946
it ( 'should clean data of elements replaced with directive template' , function ( ) {
11947
11947
testReplaceElementCleanup ( { replace : true } ) ;
You can’t perform that action at this time.
0 commit comments