3.0.8
- Added mobile plugin. It fixes the problem when the user on the Iphone Safari clicks on the element, the editor instead putting the cursor there, selects the word and looks for its definition
- Separate response logic in mobile plugin
- Added option - extraButtons
var editor = new Jodit('#table_editor_interface', {
extraButtons: [
{
name: 'adddate',
exec: function (editor) {
var a = editor.doc.createTextNode('111');
editor.selection.insertNode(a);
}
}
]
});