2.1.0 • Published 5 years ago

scroll-bus v2.1.0

Weekly downloads
19
License
MIT
Repository
github
Last release
5 years ago

Scroll Bus

Build Status

Tiny library to centralize scroll handlers.

import ScrollBus from 'scroll-bus';

ScrollBus.on(event => {
  // Do stuff
});

// Debounced
ScrollBus.on(event => {
  // Do stuff
}, 150);

// Debounced and immediate
ScrollBus.on(event => {
  // Do stuff
}, 150, true);

// Removes handler
ScrollBus.off(handler);

// Removes all handlers
ScrollBus.off();
2.1.0

5 years ago

2.0.0

5 years ago

1.0.3

6 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago