File tree 1 file changed +16
-0
lines changed
1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -101,6 +101,15 @@ function $RootScopeProvider() {
101
101
$event . currentScope . $$destroyed = true ;
102
102
}
103
103
104
+ function cleanUpScope ( $scope ) {
105
+ // Recurse bottom up
106
+ $scope . $$childHead && cleanUpScope ( $scope . $$childHead ) ;
107
+ $scope . $$nextSibling && cleanUpScope ( $scope . $$nextSibling ) ;
108
+
109
+ $scope . $$nextSibling = $scope . $$prevSibling = $scope . $$childHead =
110
+ $scope . $$childTail = $scope . $root = $scope . $$watchers = null ;
111
+ }
112
+
104
113
/**
105
114
* @ngdoc type
106
115
* @name $rootScope.Scope
@@ -900,6 +909,13 @@ function $RootScopeProvider() {
900
909
this . $on = this . $watch = this . $watchGroup = function ( ) { return noop ; } ;
901
910
this . $$listeners = { } ;
902
911
912
+ var that = this ;
913
+ if ( msie === 9 ) {
914
+ this . $evalAsync ( function ( ) {
915
+ cleanUpScope ( that ) ;
916
+ } ) ;
917
+ }
918
+
903
919
// All of the code below is bogus code that works around V8's memory leak via optimized code
904
920
// and inline caches.
905
921
//
You can’t perform that action at this time.
0 commit comments