Giter Club home page Giter Club logo

Comments (5)

prevwong avatar prevwong commented on May 24, 2024 1

@Pablo2048 @samir-kamble Hey guys, support for IE-11 is here! Sorry again for the wait.

from drooltip.js.

prevwong avatar prevwong commented on May 24, 2024

Hey, firstly thanks a lot for reporting this issue! I will look into it as soon as I can!
Cheers :)

from drooltip.js.

samir-kamble avatar samir-kamble commented on May 24, 2024

Any solution on this till now? I am also facing the same issue.

from drooltip.js.

prevwong avatar prevwong commented on May 24, 2024

Hi there. So sorry for not updating on this, have been caught up with a lot of work at the moment. But anyways, I have figured out what was causing the issue; It's likely due to Drooltip having some ES6 code which is unsupported in IE 11.

In the case of SCRIPT1003, the issue is related to objects. Normally, in objects, there should be a key and a value pair. In ES6, you are allowed to just add a variable into an object without having to specify it's key. As a result, the key is automatically set to the variables name. Take a part of Drooltip's code for example:

this.tooltips[i] = { tooltip, options }; which is ES6 compliant and is equivalent to
this.tooltips[i] = { "tooltip" : tooltip, "options" : options };

The former is what's written in Drooltip currently and is supported by most modern browsers. However, the latter is what needs to be done in order to support older browsers such as IE11.

I will try to update the code to be more backwards compatible when I can.

from drooltip.js.

Pablo2048 avatar Pablo2048 commented on May 24, 2024

@prevwong Thank You very much...

from drooltip.js.

Related Issues (5)

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.