some trailing commas removed, so closure compiler doesn't complain

This commit is contained in:
Bartek Szopka
2012-01-02 22:39:09 +01:00
parent 821cf549fc
commit 755edaf60c

View File

@@ -194,12 +194,12 @@
rotate: {
x: -parseInt(step.rotate.x, 10),
y: -parseInt(step.rotate.y, 10),
z: -parseInt(step.rotate.z, 10),
z: -parseInt(step.rotate.z, 10)
},
scale: {
x: 1 / parseFloat(step.scale.x),
y: 1 / parseFloat(step.scale.y),
z: 1 / parseFloat(step.scale.z),
z: 1 / parseFloat(step.scale.z)
},
translate: {
x: -step.translate.x,