Skip to content

Instantly share code, notes, and snippets.

@alexzuza
Created May 19, 2018 13:07
Show Gist options
  • Save alexzuza/0870e6c45bec1596adb465f80ae81f2a to your computer and use it in GitHub Desktop.
Save alexzuza/0870e6c45bec1596adb465f80ae81f2a to your computer and use it in GitHub Desktop.
IVy mark dirty
export function markDirty<T>(component: T) {
ngDevMode && assertNotNull(component, 'component');
const lElementNode = _getComponentHostLElementNode(component);
markViewDirty(lElementNode.view);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment