Stop from receiving notifications
angular
.module('App', [])
.controller('ControllerD', function ControllerD($scope, CounterStore) {
const hookLink = CounterStore.hook('INCREMENT_COUNT', (state, calls) => {
$scope.count = state.count;
if (calls === 3) {
hookLink.destroy();
}
});
});angular
.module('App', [])
.controller('ControllerD', function ControllerD($scope, CounterStore) {
CounterStore.hook('INCREMENT_COUNT', (state) => {
$scope.count = state.count;
}).destroyOn($scope);
});Last updated
Was this helpful?