Git Product home page Git Product logo

Comments (3)

FRSgit avatar FRSgit commented on May 29, 2024

Hey @lenamtl! Well, it seems that to use Select2 jQuery plugin you need to use regular, non-passive events, so they can be prevented by plugin's code. Our library by default makes all event passive and that's why you get an error.
The only solution to this problem I see is to bring back the original addEventListener method for the element which Select2 would try to add event listener on. Instructions about how to bring back the original addEventListener are written within our README file.

So, for example - the basic usage of Select2 which normally looks like this:

$('.example-select').select2();

should be changed in the following way:

const $exampleSelect = $('.example-select');
$exampleSelect[0].addEventListener = $exampleSelect[0].addEventListener._original;
$exampleSelect.select2();

Can you check if this solution does fix the problem for you? Waiting for feedback!

from default-passive-events.

lenamtl avatar lenamtl commented on May 29, 2024

I decided to fix all the warning instead of using your plugin, as it may be hard to catch all errors from each plugin and this will require a lot of tests in my case.

Thanks for the fix I will make a test and let you know as it can help someone else.

from default-passive-events.

FRSgit avatar FRSgit commented on May 29, 2024

Yea, sure, thanks! The whole point of this library is to use it in the environment when you do have some performance problems (because of libraries not using passive listeners) and you're not sure if libraries creators will add passive events support in the near future.
Ofc it might need extra attention from you, but well, if you have some problematic case - it's the only way to straighten it out.

If there is nothing more I can do here, I'll close the issue. Please respond here when you would be able to test the code I've posted earlier! 💪

from default-passive-events.

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.