AngularJS tanto ng-model como ng-cambio en la entrada alterar el estado de alcance $, que uno tiene prioridad

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