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

quill-image-uploader

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

quill-image-uploader - npm Package Compare versions

Comparing version 1.2.2 to 1.2.3

2

package.json
{
"name": "quill-image-uploader",
"version": "1.2.2",
"version": "1.2.3",
"repository": "https://github.com/noeloconnell/quill-image-uploader.git",

@@ -5,0 +5,0 @@ "description": "A module for Quill rich text editor to allow images to be uploaded to a server instead of being base64 encoded",

@@ -27,2 +27,3 @@ import LoadingImage from "./blots/image.js";

selectLocalImage() {
this.quill.focus();
this.range = this.quill.getSelection();

@@ -77,2 +78,3 @@ this.fileHolder = document.createElement("input");

this.quill.focus();
this.range = this.quill.getSelection();

@@ -82,2 +84,3 @@ let file = evt.dataTransfer.files[0];

setTimeout(() => {
this.quill.focus();
this.range = this.quill.getSelection();

@@ -102,5 +105,7 @@ this.readAndUploadFile(file);

if (file) {
this.quill.focus();
this.range = this.quill.getSelection();
evt.preventDefault();
setTimeout(() => {
this.quill.focus();
this.range = this.quill.getSelection();

@@ -107,0 +112,0 @@ this.readAndUploadFile(file);

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