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 editable.js created the default input element without type='text'. Giving it a type the input can be styled using css selectors, e.g. input[type=text]
This can be easily achieved by adding the following line right after line 117:
this.editField.element.type = 'text';
The text was updated successfully, but these errors were encountered:
Currently editable.js created the default input element without type='text'. Giving it a type the input can be styled using css selectors, e.g. input[type=text]
This can be easily achieved by adding the following line right after line 117:
this.editField.element.type = 'text';
The text was updated successfully, but these errors were encountered: