gauntface / dpad-navigation

A javascript library to add basic spatial navigation to your web app. Useful until spatial focusing becomes the norm in browsers
Apache License 2.0
61 stars 15 forks source link

how to disable libary? #5

Closed Mastrom10 closed 3 years ago

Mastrom10 commented 4 years ago

i need to disable the navigation, but i dont find any window.dpadFocusController.disable() i tried window.dpadFocusController = null, but not working. any ideas? ty!!!!

gauntface commented 4 years ago

I've just done a re-write of the library using Typescript and cleaning up the code as part of that I've just added a quick hack to disable the library.

window.dpad.disable();

All this does is prevent the focus state from moving as the result of a keypress. It should add / remove the key event listeners to make the library more lean.