UNPKG

onscreen

Version:

A light library that does stuff when the matched elements enter or leave the viewport

13 lines (11 loc) 268 B
/** * Removes the scroll event handler * * @return {void} */ function destroy() { this.options.container.removeEventListener('scroll', this._scroll); window.removeEventListener('resize', this._scroll); this.attached = false; } export default destroy;