AngularJS tanto o modelo ng quanto o ng-mudança na entrada alteram o estado de scope-que se tem prioridade

... 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