Joan Peralta

Results 4 comments of Joan Peralta

The param `direction` should be an object like `{ top: X, left: X}` or add the params like : `db.on('select', function (el, x, y) { ... });` ?

I will create events for each method of `Navigator`, like `init`, `enable`, `disable`, `destroy`, `left`, `up`, `down`, `right`, and `select`.

## I've done! ``` javascript // Without jQuery db.on('method', function ( ... ) { ... }); db.off('method'); // With jQuery $(db).on('domNavigator.method', function (event, ... ) { }): $(db).off('domNavigator.method'); ``` ####...