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
The text was updated successfully, but these errors were encountered:
bbottema
changed the title
inputNumberPolyfill assumes type attribute is there
inputNumberPolyfill assumes type attribute is there (and can crash)
Jul 15, 2016
inputNumberPolyfill should not assume anything about inputs and only apply itself when it can, but never error out.
return elem.attr("type").toLowerCase() === "number" && (...)
Should become:
return elem.attr("type") && elem.attr("type").toLowerCase() === "number" &&
The text was updated successfully, but these errors were encountered: