Skip to content

Releases: xdan/jodit

Added Arabic language

02 Feb 09:16
Compare
Choose a tag to compare

Bug Fix

02 Feb 06:45
Compare
Choose a tag to compare
  • Fix debounce bug with invokeAsap parameter.
  • Fix bug in InsertNewLine Plugin
  • Clean plugin was not included in build
  • Fix bug in hotkeys plugin

3.1.24 new Toolbar System

31 Jan 07:44
Compare
Choose a tag to compare
  • New Toolbar system
  • Fixed a lot of bugs

3.1.17 Read-Only

19 Jan 12:17
Compare
Choose a tag to compare

In editor added method and option for enable read-only mode Read more
image

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

3.1.8

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