Skip to content

Releases: xdan/jodit

3.0.25

Choose a tag to compare

@xdan xdan released this 30 Aug 08:03
  • Added size plugin
    var editor = new Jodit('.element', {
        allowResizeX: true,
        allowResizeY: true,
        height: 300,
     })
    clip2net_170830115445

3.0.24

Choose a tag to compare

@xdan xdan released this 28 Aug 18:41
  • In link popup added Open link and Brush buttons
    image
  • Fix a few bugs

3.0.22

Choose a tag to compare

@xdan xdan released this 25 Aug 11:02
  • Added popup for links
    image
  • In source added showGutter options. And it was set in false. examples

3.0.21

Choose a tag to compare

@xdan xdan released this 24 Aug 16:08
  • Changed default ACE theme
    image

  • Meet split mode
    splitmode

  • Fix a few bugs

3.0.20

Choose a tag to compare

@xdan xdan released this 22 Aug 16:54
  • Fix bug in Uploader module when user could not upload image from upload widget
  • When user is resizing image and press delete button - image will be removed

3.0.15

Choose a tag to compare

@xdan xdan released this 21 Aug 12:27
  • Text icons
var editor = new Jodit('#editor', {
   textIcons: true
})

image

3.0.14

Choose a tag to compare

@xdan xdan released this 21 Aug 12:00
  • Restore Dark theme by 2.5.62
    var editor = new Jodit('#editor', {
        theme: "dark"
    })
    image
  • Restrore by 2.5.62 toolbar size options
    var editor = new Jodit('#editor', {
         toolbarButtonSize: "large" // "small", "medium"
     })
    image

3.0.13

Choose a tag to compare

@xdan xdan released this 18 Aug 23:30
  • On mobile devices - FileBrowser show only files
    image
    image
  • Double Tap on Image in FileBrowser inserts image in editor
  • Fix a few bugs in table plugin
  • Couple steps to mobile friendly
    image

3.0.10

Choose a tag to compare

@xdan xdan released this 18 Aug 12:53
  • Fix resizer problem for IFRAME
    image
  • Added addNewLine plugin for comfortable work with tables, iframes and images
    image

3.0.8

Choose a tag to compare

@xdan xdan released this 16 Aug 13:25
  • 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);
            }
        }
    ]
});