File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ export default function ngReduxProvider() {
107
107
108
108
const mergedStore = assign ( { } , store , { connect : Connector ( store ) } ) ;
109
109
110
- if ( _providedStore ) wrapStore ( _providedStore , mergedStore ) ;
110
+ if ( _providedStore ) wrapStore ( _providedStore , mergedStore , injector . get ( '$rootScope' ) ) ;
111
111
112
112
return mergedStore ;
113
113
} ;
Original file line number Diff line number Diff line change 1
- export default function wrapStore ( providedStore , ngReduxStore ) {
2
- providedStore . subscribe ( ( ) => {
1
+ export default function wrapStore ( providedStore , ngReduxStore , $rootScope ) {
2
+ const unsubscribe = providedStore . subscribe ( ( ) => {
3
3
let newState = providedStore . getState ( ) ;
4
4
ngReduxStore . dispatch ( {
5
5
type : '@@NGREDUX_PASSTHROUGH' ,
6
6
payload : newState
7
7
} ) ;
8
8
} ) ;
9
9
providedStore . dispatch ( { type : '@@NGREDUX_PASSTHROUGH_INIT' } )
10
+ $rootScope . $on ( '$destroy' , unsubscribe )
10
11
}
You can’t perform that action at this time.
0 commit comments