Skip to content

Commit

Permalink
New version 4.0.0-beta.111 Read more https://github.com/xdan/jodit/bl…
Browse files Browse the repository at this point in the history
  • Loading branch information
xdan committed Nov 15, 2023
1 parent 08d7f22 commit 4a3a4e0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jodit",
"version": "4.0.0-beta.110",
"version": "4.0.0-beta.111",
"description": "Jodit is awesome and usefully wysiwyg editor with filebrowser",
"main": "build/jodit.min.js",
"types": "./types/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/core/async/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The Async module is designed to handle asynchronous operations within the editor.

## Purpose
## Motivation

The Jodit editor can be created, deleted, and re-created. All asynchronous operations associated with it should be properly handled.

Expand Down
5 changes: 4 additions & 1 deletion src/plugins/enter/enter.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1063,7 +1063,10 @@ describe('Enter behavior Tests', function () {
].forEach(([source, result, options, mod]) => {
describe('For source: ' + source, () => {
it('Should be result: ' + result, async () => {
const editor = getJodit(options);
const editor = getJodit({
...options,
disablePlugins: ['paste-code']
});
await editor.waitForReady();
editor.focus();
editor.value = source;
Expand Down

0 comments on commit 4a3a4e0

Please sign in to comment.