cozy / cozy-photos-v2

Deprecated - New : https://github.com/cozy/cozy-drive/tree/master/src/photos - Personal Photo Gallery Manager
http://cozy.io
GNU Affero General Public License v3.0
27 stars 25 forks source link

Improve keyboard support #142

Open clochix opened 9 years ago

clochix commented 9 years ago

Reported by Gidzit in the forum: https://forum.cozy.io/t/bug-report-in-photo-keyboard-support-aka-kill-onclick-event/764

How to reproduce the bug?

The javascript code seems to listen to the click, keyup, keydown events and so, bypass all native browser functionnalities to handle possible input devices.

How to fix?

Use the submit event on the form and drop the click, keyup, keydown handler. When a user click on the form submit button or use the enter key, the submit event is triggered on the form. With less code, you'll manage more devices with less code.