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

react-draft-wysiwyg

Package Overview
Dependencies
Maintainers
1
Versions
131
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-draft-wysiwyg - npm Package Compare versions

Comparing version 1.12.11 to 1.12.12

3

CHANGELOG.md

@@ -126,1 +126,4 @@ # Changelog

- Support for Japanese locale.
## 4/3/2018 (1.12.11)
- #621, variable declaration causes handlePastedText function error after js minified.

2

package.json
{
"name": "react-draft-wysiwyg",
"version": "1.12.11",
"version": "1.12.12",
"description": "A wysiwyg on top of DraftJS.",

@@ -5,0 +5,0 @@ "main": "dist/react-draft-wysiwyg.js",

@@ -36,3 +36,6 @@ import React, { Component } from 'react';

const linkTab = window.open(url, 'blank'); // eslint-disable-line no-undef
linkTab.focus();
// linkTab can be null when the window failed to open.
if (linkTab) {
linkTab.focus();
}
};

@@ -39,0 +42,0 @@

@@ -230,3 +230,3 @@ /* @flow */

if (onBlur && this.focusHandler.isEditorBlur(event)) {
onBlur(event);
onBlur(event, this.getEditorState());
}

@@ -233,0 +233,0 @@ };

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