NetanelBasal
11/10/2017 - 10:47 AM

angular-closet1.ts

@Component{...}
class WidgetItemComponent {
 constructor(private _host: ElementRef) { }
           
 ngAfterViewinit() {
   if(condition) {
     const closetParent = $(this._host.nativeElement).closest('widget-content');
     $(closetParent).addClass('overflow');
   }
 }
}