Skip to content

Instantly share code, notes, and snippets.

@vivainio
Created January 15, 2018 08:27
Show Gist options
  • Save vivainio/383f143df70efa40ff57931836489f22 to your computer and use it in GitHub Desktop.
Save vivainio/383f143df70efa40ff57931836489f22 to your computer and use it in GitHub Desktop.
// create function that runs detectchanges after running the function
export function andDetectChanges(cdr: ChangeDetectorRef, expr: () => void) {
function changeDetectWrapper() {
expr();
cdr.detectChanges();
}
return changeDetectWrapper;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment