We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2617083 commit 5184fc6Copy full SHA for 5184fc6
examples/counter/devTools.js
@@ -10,7 +10,7 @@ angular.module('counter')
10
);
11
//Hack to reflect state changes when disabling/enabling actions via the monitor
12
$ngRedux.subscribe(_ => {
13
- setTimeout($rootScope.$apply, 100);
+ setTimeout($rootScope.$apply.bind($rootScope), 100);
14
});
15
16
examples/counter/package.json
@@ -29,6 +29,7 @@
29
"angular": "^1.4.4",
30
"ng-redux": "^2.0.0",
31
"redux": "^2.0.0",
32
+ "redux-devtools": "^2.1.0",
33
"redux-thunk": "^0.1.0"
34
}
35
0 commit comments