Skip to content

Commit

Permalink
Still not sure why I use semi-colons, but alas, I do.
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanflorence committed Dec 1, 2010
1 parent b6da134 commit 63de896
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/CSSAnimation.js
Expand Up @@ -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;
},

Expand Down

0 comments on commit 63de896

Please sign in to comment.