I have defined template
@Component({ selector: \'name\', directives: [ ... ], templateUrl: \'name.html\' })
and class
You could do it by the following code as well:
import { HostListener} from "@angular/core"; @HostListener("window:scroll", []) onWindowScroll() { //we'll do some stuff here when the window is scrolled }