Skip to content

Commit

Permalink
This fixes issue #33
Browse files Browse the repository at this point in the history
  • Loading branch information
Fil Maj committed Jul 24, 2011
1 parent 370b9d3 commit 45f2195
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/fx.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ xui.extend({
var serialisedProps = [], key;
if (typeof props != string) {
for (key in props) {
serialisedProps.push(key + ':' + props[key]);
serialisedProps.push(cssstyle(key) + ':' + props[key]);
}
serialisedProps = serialisedProps.join(';');
} else {
Expand Down

0 comments on commit 45f2195

Please sign in to comment.