Code Monkey home page Code Monkey logo

Comments (7)

streetrider avatar streetrider commented on June 1, 2024

Hey ovenglass-

We'll make sure to look into it. Our developer is on vacation until June 12th, so any technical issues or requests will experience delay in response. We'll make sure to keep you posted.

The MixItUp Team

from mixitup.

patrickkunka avatar patrickkunka commented on June 1, 2024

Hi Ovenglass,

Thanks for bringing this to my attention! There are certain functions that get aborted in IE < 10 to prevent unnecessary processing and looks like the toGrid/List methods may have got caught in the net unnecessarily. I'll look into a fix for the next version.

Best,
Patrick

from mixitup.

hcwagg avatar hcwagg commented on June 1, 2024

Hi Patrick do you have a time frame for the next release? Will that be version 1.6?

from mixitup.

ianscotland avatar ianscotland commented on June 1, 2024

This is easily fixed in the src by adding the code below at line 728 (the IE f off code section);

            if (config.layoutMode == 'list') {
                $cont.addClass(config.listClass);
                $cont.removeClass(config.gridClass);
                $toshow.css('display', config.targetDisplayList);
            } else {
                $cont.addClass(config.gridClass);
                $cont.removeClass(config.listClass);
                $toshow.css('display', config.targetDisplayGrid);
            };

from mixitup.

patrickkunka avatar patrickkunka commented on June 1, 2024

Thank you! Have integrated this into 1.6. Sorry for the delay, but we are working some pretty ambitious new features, and a large overhaul of the code.

from mixitup.

donnemo avatar donnemo commented on June 1, 2024

Also, using console.log(newFilter); in IE9 without developer tools running causes the JS to break down (at least it did for me).

I used the below to resolve and still leave the console logging active.

<script type="text/javascript">
    // IE9 fix
    if(!window.console) {
        var console = {
            log : function(){},
            warn : function(){},
            error : function(){},
            time : function(){},
            timeEnd : function(){}
        }
    }
</script>

from mixitup.

boonier avatar boonier commented on June 1, 2024

The problem I find is simply having any console.log calls without the Developer tools open.

I just commented out any related to mixitup for my production scripts.

cheers

from mixitup.

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.