Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

idist-jodit

Package Overview
Dependencies
Maintainers
1
Versions
83
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

idist-jodit - npm Package Compare versions

Comparing version 4.2.12 to 4.2.13

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc