Browse Source

Revert "Allow Chrome to optimize for…in loop in animate()"

This reverts commit cabe8f42e6.
pull/781/head
Joe Germuska 10 years ago
parent
commit
7933906681
  1. 2
      source/js/Core/Core/VMM.Library.js

2
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);

Loading…
Cancel
Save