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 was archived by the owner on Jul 29, 2022. It is now read-only.
This is more of a suggestion than an issue, but the default input when passing 'text' does not have a 'type' property on it, see:
text: {
element : function(settings, original) {
var input = $('');
My suggestion is to alter this to:
text: {
element : function(settings, original) {
var input = $('');
My reasoning is:
I don't think the tag is valid without the "type" attribute
(and actually more important to me) Having the type makes the field easier to custom style plus it will then automatically inherit all of my "input[type='text']" styles that already exist.