Skip to content

3.0.8

Compare
Choose a tag to compare
@xdan xdan released this 16 Aug 13:25
· 2897 commits to main since this release
  • 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);
            }
        }
    ]
});