mirzinho

Results 3 comments of mirzinho

@jkuri ``` public scrollEvents: EventEmitter; ngOnInit() { this.scrollEvents = new EventEmitter(); } ``` ``` const ev = new SlimScrollEvent({ type: 'recalculate' }); this.scrollEvents.emit(ev); ``` Please confirm this is the correct...

@jkuri unfortunately its not working... not matter what the time out is none, 0 or 10sec.. i see that event is created but looks like the emitted event does nothing

@jkuri now i have and got another error but that is easly fixed, `public scrollEvents: EventEmitter;` ` this.scrollEvents = new EventEmitter();` should be this insted of `EventEmitter` , otherwise you...