An open API service indexing awesome lists of open source software.

https://github.com/bkwld/window-event-mediator

Mediator pattern for window event handling
https://github.com/bkwld/window-event-mediator

Last synced: about 1 year ago
JSON representation

Mediator pattern for window event handling

Awesome Lists containing this project

README

          

# Window Event Mediator
#### Mediator pattern for window event handling

Example Usage:

```
mediator = require 'window-event-mediator'
mediator.on 'resize', myCallback, { throttle: 40 }
mediator.off 'scroll', myCallback
```