idist-jodit
Advanced tools
Comparing version 4.2.12 to 4.2.13
{ | ||
"name": "idist-jodit", | ||
"version": "4.2.12", | ||
"version": "4.2.13", | ||
"description": "Jodit is awesome and usefully wysiwyg editor with filebrowser", | ||
@@ -5,0 +5,0 @@ "main": "build/jodit.min.js", |
@@ -1168,3 +1168,3 @@ /** | ||
afterInitHook(): void { | ||
// do nothing | ||
this.setReadOnly(this.o.readonly); | ||
} | ||
@@ -1171,0 +1171,0 @@ |
@@ -41,2 +41,4 @@ /** | ||
this.j.e.fire('change'); | ||
this.j.e.fire('focus'); | ||
this.j.e.fire('blur'); | ||
}; | ||
@@ -43,0 +45,0 @@ |
@@ -67,2 +67,5 @@ /** | ||
protected afterInit(editor: IJodit): void { | ||
if (this.j.o.readonly) { | ||
return; | ||
} | ||
$$('div', this.rect).forEach((resizeHandle: HTMLElement) => { | ||
@@ -108,2 +111,5 @@ editor.e.on( | ||
protected onEditorClick(e: MouseEvent): void { | ||
if (this.j.o.readonly) { | ||
return; | ||
} | ||
let node = e.target as Nullable<Node>; | ||
@@ -420,2 +426,3 @@ | ||
}; | ||
// iframe attribute에 resizable이 false로 설정되어 있으면 resizable을 false로 설정 | ||
@@ -422,0 +429,0 @@ // 이후 onStartResizing에서 resizable이 false이면 리사이징을 하지 않음 |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
24528891
225162