Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*!

Work with events.

Event conditions are represented by `EventEmitter` objects, to which
listeners can be attached through their `.listener` method, which returns
an `EventListener` object that can be removed from and added back to the set
of listeners.

```
button.on_click().listener(|e| {
    // Action
});
```
*/

mod event_emitter;
pub use self::event_emitter::*;