Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Css2Properties cssText getter would always throw exception, fixed now
  • Loading branch information
jganetsk committed Jul 2, 2009
1 parent 011f599 commit 6724fac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/css/properties.js
Expand Up @@ -7,7 +7,7 @@ var CSS2Properties = function(options){
};
__extend__(CSS2Properties.prototype, {
get cssText(){
return Array.prototype.apply.join(this,[';\n']);
return Array.prototype.join.apply(this,[';\n']);
},
set cssText(cssText){
__cssTextToStyles__(this, cssText);
Expand Down

0 comments on commit 6724fac

Please sign in to comment.