Skip to content

Commit

Permalink
Fix missing variable
Browse files Browse the repository at this point in the history
  • Loading branch information
mcfedr committed Sep 1, 2011
1 parent 6f118cc commit 41f4104
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Fx/Fx.Elements.CSS3.js
Expand Up @@ -20,7 +20,7 @@ Fx.Elements = new Class({
Extends: elementsCSS2,

check: function(obj){
return (this.css3Supported && !this.boundComplete && Object.every(obj, function(properties) { return animatable.containsArray(Object.keys(properties)); })) || this.parent();
return (this.css3Supported && !this.boundComplete && Object.every(obj, function(properties) { return this.animatable.containsArray(Object.keys(properties)); }, this)) || this.parent();
},

start: function(obj){
Expand Down

0 comments on commit 41f4104

Please sign in to comment.