import {Directive, Input, Output, ElementRef, EventEmitter} from '@angular/core'; import './slimScroll.loader.ts'; @Directive({ selector: '[baSlimScroll]' }) export class slimScroll { @Input() public baSlimScrollOptions:Object; constructor(private _elementRef:ElementRef) { } ngOnChanges(changes) { this._scroll(); } private _scroll() { this._destroy(); this._init(); } private _init() { jQuery(this._elementRef.nativeElement).slimScroll(this.baSlimScrollOptions); } private _destroy() { jQuery(this._elementRef.nativeElement).slimScroll({ destroy: true }); } }