Releases: xdan/jodit
Releases · xdan/jodit
3.0.24
3.0.22
3.0.21
3.0.20
3.0.15
3.0.14
3.0.13
3.0.10
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);
}
}
]
});
3.0.6
- Now work options buttonsXS,buttonsSM and buttonsMD for responsible interface
- Restore selection after change mode. It is very usefully
- Fixed bug in source plugin - when user does not need ace editor. Simple textarea had been created with bug.
- Iframe functional was separated in plugin