File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ angular.module('counter')
10
10
) ;
11
11
//Hack to reflect state changes when disabling/enabling actions via the monitor
12
12
$ngRedux . subscribe ( _ => {
13
- setTimeout ( $rootScope . $apply , 100 ) ;
13
+ setTimeout ( $rootScope . $apply . bind ( $rootScope ) , 100 ) ;
14
14
} ) ;
15
15
} ) ;
16
16
Original file line number Diff line number Diff line change 29
29
"angular" : " ^1.4.4" ,
30
30
"ng-redux" : " ^3.0.0" ,
31
31
"redux" : " ^3.0.0" ,
32
+ "redux-devtools" : " ^2.1.0" ,
32
33
"redux-thunk" : " ^0.1.0"
33
34
}
34
35
}
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ export default function Connector(store) {
33
33
34
34
invariant (
35
35
_ . isFunction ( target ) || _ . isObject ( target ) ,
36
- 'The target parameter passed to connect must be a Function or a plain object.'
36
+ 'The target parameter passed to connect must be a Function or a object.'
37
37
) ;
38
38
39
39
//Initial update
You can’t perform that action at this time.
0 commit comments