From 79339066810a79c45aa3cf723da20938af19b8c1 Mon Sep 17 00:00:00 2001 From: Joe Germuska Date: Wed, 25 Mar 2015 10:04:43 -0500 Subject: [PATCH] =?UTF-8?q?Revert=20"Allow=20Chrome=20to=20optimize=20for?= =?UTF-8?q?=E2=80=A6in=20loop=20in=20animate()"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit cabe8f42e63151a8ca5a6d47a5751e28a3f97fd9. --- source/js/Core/Core/VMM.Library.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/js/Core/Core/VMM.Library.js b/source/js/Core/Core/VMM.Library.js index 8b15eca..25d8223 100644 --- a/source/js/Core/Core/VMM.Library.js +++ b/source/js/Core/Core/VMM.Library.js @@ -478,7 +478,7 @@ if(typeof VMM != 'undefined') { _ease = " cubic-bezier(0.33, 0.66, 0.66, 1)"; //_ease = " ease-in-out"; - for (var x in _att) { + for (x in _att) { if (Object.prototype.hasOwnProperty.call(_att, x)) { trace(x + " to " + _att[x]); VMM.Lib.css(element, '-webkit-transition', x + ' ' + __duration + _ease);