All Topics 1134
    
    Theme not working in IE11
	
	We built a new website using the trendy theme.
Unfortunately this does not work on IE11? We get a complete blank screen.
22 Answers
	
	
			Best Answer
		
	
		
													Hello,
Thanks for your message. Please change this script from the script.js file.
    /* === easeInOutExpo Effect === */
    (function () {
        $.easing = Object.assign({}, $.easing, {
            easeInOutExpo: function (x, t, b, c, d) {
                if (t==0) return b;
                if (t==d) return b+c;
                if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
                return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
            }
        });
    }());
Best Regards