diff --git a/Source/CSSAnimation.js b/Source/CSSAnimation.js index c6aa1ad..0dc6a3a 100644 --- a/Source/CSSAnimation.js +++ b/Source/CSSAnimation.js @@ -75,7 +75,7 @@ global.Transform.prototype = { setter: function(a, b, method){ if (typeof a === 'string') return this.add(method + a.toUpperCase(), b); - for (i in a) if (a.hasOwnProperty(i)) this[method](i, a[i]) + for (i in a) if (a.hasOwnProperty(i)) this[method](i, a[i]); return this; },