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')
1010 ) ;
1111 //Hack to reflect state changes when disabling/enabling actions via the monitor
1212 $ngRedux . subscribe ( _ => {
13- setTimeout ( $rootScope . $apply , 100 ) ;
13+ setTimeout ( $rootScope . $apply . bind ( $rootScope ) , 100 ) ;
1414 } ) ;
1515 } ) ;
1616
Original file line number Diff line number Diff line change 2929 "angular" : " ^1.4.4" ,
3030 "ng-redux" : " ^3.0.0" ,
3131 "redux" : " ^3.0.0" ,
32+ "redux-devtools" : " ^2.1.0" ,
3233 "redux-thunk" : " ^0.1.0"
3334 }
3435}
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ export default function Connector(store) {
3333
3434 invariant (
3535 _ . 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.'
3737 ) ;
3838
3939 //Initial update
You can’t perform that action at this time.
0 commit comments