AngularJS zarówno ng-model, jak i ng zmiany wejściowe zmieniają stan $ zakresu-który ma pierwszeństwo

... ng-change:
if (smth.paused) {
    try {
      throw new Error('ERROR');
    } catch (error) {
      $timeout(() => { // Can not and should not be done immediately
          smth.paused = false;
      })
    }
}
SAMER SAEID