You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently there is a mixture of keypress detection and form submission handling. These should be unified: instead of watching for keypresses, each form should handle a submit event and cancel the default action.
This issue might be useful. Some forms have specific functions (#login for example) that need to be called on submission. If the function name is stored in a data-action="do_login" format, we can avoid a switch in the form submission handler and stick with a global form submission statement.
The text was updated successfully, but these errors were encountered:
Currently there is a mixture of keypress detection and form submission handling. These should be unified: instead of watching for keypresses, each form should handle a submit event and cancel the default action.
This issue might be useful. Some forms have specific functions (
#login
for example) that need to be called on submission. If the function name is stored in adata-action="do_login"
format, we can avoid a switch in the form submission handler and stick with a global form submission statement.The text was updated successfully, but these errors were encountered: