This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree 2 files changed +14
-1
lines changed
2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -136,7 +136,6 @@ function $RootScopeProvider(){
136
136
this . $$phase = this . $parent = this . $$watchers =
137
137
this . $$nextSibling = this . $$prevSibling =
138
138
this . $$childHead = this . $$childTail = null ;
139
- this . $destructor = noop ;
140
139
this [ 'this' ] = this . $root = this ;
141
140
this . $$asyncQueue = [ ] ;
142
141
this . $$listeners = { } ;
@@ -458,6 +457,8 @@ function $RootScopeProvider(){
458
457
if ( this . $root == this ) return ; // we can't remove the root node;
459
458
var parent = this . $parent ;
460
459
460
+ this . $broadcast ( '$destroy' ) ;
461
+
461
462
if ( parent . $$childHead == this ) parent . $$childHead = this . $$nextSibling ;
462
463
if ( parent . $$childTail == this ) parent . $$childTail = this . $$prevSibling ;
463
464
if ( this . $$prevSibling ) this . $$prevSibling . $$nextSibling = this . $$nextSibling ;
Original file line number Diff line number Diff line change 2
2
3
3
describe ( 'Scope' , function ( ) {
4
4
5
+ beforeEach ( module ( provideLog ) ) ;
6
+
7
+
5
8
describe ( '$root' , function ( ) {
6
9
it ( 'should point to itself' , inject ( function ( $rootScope ) {
7
10
expect ( $rootScope . $root ) . toEqual ( $rootScope ) ;
@@ -393,6 +396,15 @@ describe('Scope', function() {
393
396
$rootScope . $digest ( ) ;
394
397
expect ( log ) . toEqual ( '12' ) ;
395
398
} ) ) ;
399
+
400
+
401
+ it ( 'should broadcast the $destroy event' , inject ( function ( $rootScope , log ) {
402
+ first . $on ( '$destroy' , log . fn ( 'first' ) ) ;
403
+ first . $new ( ) . $on ( '$destroy' , log . fn ( 'first-child' ) ) ;
404
+
405
+ first . $destroy ( ) ;
406
+ expect ( log ) . toEqual ( 'first; first-child' ) ;
407
+ } ) ) ;
396
408
} ) ;
397
409
398
410
You can’t perform that action at this time.
0 commit comments