Skip to content

Releases: xdan/jodit

3.1.12 Hotkeys

17 Jan 14:27
Compare
Choose a tag to compare

Added Hotkeys plugin

Now for all Commands you can add custom shortcust
Shortcuts now:

  • ctrl+b - Bold
  • ctrl+i - Italic
  • ctrl+u - Underline
  • ctrl+shift+i - Open special character dialog
  • ctrl+r - Open find and replace dialog
  • ctrl+f - Open find dialog
  • ctrl+z - Undo
  • ctrl+y - Redo

You can override default shortcut or add custom to default value:

var jodit = new Jodit('#editor', {
   commandToHotkeys: {
       bold: 'ctrl+shift+b',
       italic: ['ctrl+i', 'ctrl+b'],
   }
})

3.1.11 Symbols

16 Jan 14:04
Compare
Choose a tag to compare

Added Symbols plugin

- -16 01 2018-18-54-07

3.1.10

15 Jan 14:43
Compare
Choose a tag to compare
  • Added Indent and outdent buttons
  • Added print button
  • Added strikethrough button
    image

3.1.9

14 Jan 02:04
Compare
Choose a tag to compare

Added universal button for mobile mode

image

All popups and list does not beyond out of the editor

image
image
image

Fixed edit image button

image

New version 3.1.8. Read more https://github.com/xdan/jodit/releases/t…

12 Jan 10:09
Compare
Choose a tag to compare
  • Fixed bug in About button
  • Completely rewritten the Events class.
    Now events with DOM elements and Jodit events are configured via a single interface
var jodit = new Jodit('#editor');
jodit.events.on('someEvent', function () {
    console.log(111);
});
jodit.events.fire('someEvent'); // 111

var someObject = {};
jodit.events.on(someObject, 'someEvent', function () {
    console.log(222);
});
jodit.events.fire(someObject, 'someEvent') // 222

var someDOMObject = document.body;
jodit.events.on(someDOMObject, 'click', function () {
    console.log(222);
});
jodit.events.fire(someDOMObject, 'click') // 222

3.1.5

10 Jan 09:02
Compare
Choose a tag to compare

Added replace mode in search plugin

- -10 01 2018-13-46-08

3.1.4

04 Jan 00:32
Compare
Choose a tag to compare

Added Search Plugin

search

In FileBrowser added permissions

permissions

Fixed

3.0.34

05 Oct 13:28
Compare
Choose a tag to compare

Added Copy format button
clip2net_171005170103

3.0.30

04 Sep 14:48
Compare
Choose a tag to compare
  • Copy/paste clipboard image - upload blob data to server and insert new Image
    clip2net_170904190753
    Works only in Chrome :(

3.0.25

30 Aug 08:03
Compare
Choose a tag to compare
  • Added size plugin
    var editor = new Jodit('.element', {
        allowResizeX: true,
        allowResizeY: true,
        height: 300,
     })
    clip2net_170830115445