From e6a3ab58f67ec9b92b2a9a771a349df9a71ec343 Mon Sep 17 00:00:00 2001 From: "pavlo.savushchyk" Date: Wed, 6 May 2015 18:56:43 +0300 Subject: [PATCH] fix BZ41474. Allows loading css files more than one time in old IE --- css.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css.js b/css.js index d30bf98..f705a68 100644 --- a/css.js +++ b/css.js @@ -74,7 +74,7 @@ define(function() { var ieCurCallback; var createIeLoad = function(url) { - curSheet.addImport(url); + curSheet.addImport(url + "?" + Math.random()); curStyle.onload = function(){ processIeLoad() }; ieCnt++;