Skip to content

Instantly share code, notes, and snippets.

@Zizzamia
Last active February 9, 2017 09:03
Show Gist options
  • Save Zizzamia/71b151e67ad133e4eccf5bde30e13ac8 to your computer and use it in GitHub Desktop.
Save Zizzamia/71b151e67ad133e4eccf5bde30e13ac8 to your computer and use it in GitHub Desktop.
import { Component, ElementRef, NgZone } from '@angular/core';
export class cornetto {
constructor(NgZone: NgZone) {
this.zone = NgZone;
}
tasteIt() {
this.zone.run(() => {
console.log('zone.run');
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment