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
{{ message }}
This repository has been archived by the owner on Nov 19, 2018. It is now read-only.
Failing silently is golden: Components should act like native DOM elements, so avoid creating elements that throw JS errors from ordinary DOM interactions, for example: you can place a <div> inside a <ul>, and while it may not behave or render normally, it shouldn't throw errors either.
This makes sense, and ajax-form should rely on default values or fail silently. One example relates to handling an invalid or unsupported method. Currently, an Error is thrown, but perhaps it should just revert to "GET" instead.
The text was updated successfully, but these errors were encountered:
From webcomponents.org's best practices page:
This makes sense, and ajax-form should rely on default values or fail silently. One example relates to handling an invalid or unsupported method. Currently, an
Error
is thrown, but perhaps it should just revert to "GET" instead.The text was updated successfully, but these errors were encountered: