Skip to content

Releases: xdan/jodit

3.0.24

28 Aug 18:41
Compare
Choose a tag to compare
  • In link popup added Open link and Brush buttons
    image
  • Fix a few bugs

3.0.22

25 Aug 11:02
Compare
Choose a tag to compare
  • Added popup for links
    image
  • In source added showGutter options. And it was set in false. examples

3.0.21

24 Aug 16:08
Compare
Choose a tag to compare
  • Changed default ACE theme
    image

  • Meet split mode
    splitmode

  • Fix a few bugs

3.0.20

22 Aug 16:54
Compare
Choose a tag to compare
  • 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

21 Aug 12:27
Compare
Choose a tag to compare
  • Text icons
var editor = new Jodit('#editor', {
   textIcons: true
})

image

3.0.14

21 Aug 12:00
Compare
Choose a tag to compare
  • 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

18 Aug 23:30
Compare
Choose a tag to compare
  • 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

18 Aug 12:53
Compare
Choose a tag to compare
  • Fix resizer problem for IFRAME
    image
  • Added addNewLine plugin for comfortable work with tables, iframes and images
    image

3.0.8

16 Aug 13:25
Compare
Choose a tag to compare
  • 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

16 Aug 13:12
Compare
Choose a tag to compare
  • 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