Giter VIP home page Giter VIP logo

Comments (5)

wout avatar wout commented on August 16, 2024

Yes, IE8 is not supported, check the Compatibility section on github:
https://github.com/wout/svg.js

from svg.js.

kelvinlouis avatar kelvinlouis commented on August 16, 2024

Hey there,

I'm using svg.js for a project and it has been working great. I like the compactness. Great job!

Unfortunately, there are some IE8 users that I have to accommodate. I don't expect them to use or make use of SVGs. I hide the functionality with the useful SVG.supported flag. There's one problem though: My project relies on AMD and svg.js doesn't define anything, if SVG isn't supported. Thus, IE8 users get an SVG undefined error.

The culprit is on line 64 (dist/svg.js):

if (!SVG.supported) return false

My workaround looks like this:

if (!SVG.supported) {
    define('SVG', function() { return SVG; });
    return false;
}

After implementing this, I can still use the SVG.supported flag.
I would like to use bower to install your great library, but without this fix I won't be able to do it.
Does this look like a reasonable change request?

from svg.js.

wout avatar wout commented on August 16, 2024

Hi Kevin,

Thanks for this fix!
To be honest, I rarely test on IE8.

I will implement it in the next release.
A huge amount of work has been done since v0.32 and I expect to release in the next 14 days.

from svg.js.

kelvinlouis avatar kelvinlouis commented on August 16, 2024

HeyI

That was fast :)

I think it would be better to move the module definitions to the top,
instead of implementing my fix and having two defines. My proposed fix is kind of bad, because it only fits my needs (no CommonJs support). It's not good practice having two defines, especially if one is named ("SVG") and the other is anonymous. And having two anonymous defines is strictly prohibited, because the require optimizer will complain.

That's why I propose this:

this.SVG = function(element) {
    if (SVG.supported)
      return new SVG.Doc(element)
  }

if (typeof define === 'function' && define.amd)
    define(function() { return SVG })
else if (typeof exports !== 'undefined')
    exports.SVG = SVG

Looking forward to your next release.

from svg.js.

wout avatar wout commented on August 16, 2024

Great, thanks! Seems like a better place indeed as the SVG object is already defined anyway.

from svg.js.

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.