Giter VIP home page Giter VIP logo

Comments (4)

frankyvij avatar frankyvij commented on July 3, 2024 1

I actually made it work by wrapping changing handlePaste function to the following:

    handlePaste(evt) {
        evt.preventDefault();

        if (evt.clipboardData && evt.clipboardData.items && evt.clipboardData.items.length) {
            this.readFiles(evt.clipboardData.items, dataUrl => {
                setTimeout(() => this.insert(dataUrl), 0);
            });
        }
    }

from quill-image-drop-module.

bwbroersma avatar bwbroersma commented on July 3, 2024

I guess because there is no evt.preventDefault(); after line 57.
Which browsers need the image paste functionality, since it seems the Chrome (v 63.0.3239.132) handles pasting.

from quill-image-drop-module.

frankyvij avatar frankyvij commented on July 3, 2024

Is there a solution for this? Adding evt.preventDefault() after line 57 does not work.

from quill-image-drop-module.

chiptoe avatar chiptoe commented on July 3, 2024

@frankyvij I can confirm,
I had similar problem, see the resulting dom:

image

I also had to comment out selection checking line 50 - the problem was that quill returned selection as an object with valid index and insert was never called. Therefore I use same code as @frankyvij .

Browser user agent:
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko)"

from quill-image-drop-module.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.