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: { rotate: {
x: -parseInt(step.rotate.x, 10), x: -parseInt(step.rotate.x, 10),
y: -parseInt(step.rotate.y, 10), y: -parseInt(step.rotate.y, 10),
z: -parseInt(step.rotate.z, 10), z: -parseInt(step.rotate.z, 10)
}, },
scale: { scale: {
x: 1 / parseFloat(step.scale.x), x: 1 / parseFloat(step.scale.x),
y: 1 / parseFloat(step.scale.y), y: 1 / parseFloat(step.scale.y),
z: 1 / parseFloat(step.scale.z), z: 1 / parseFloat(step.scale.z)
}, },
translate: { translate: {
x: -step.translate.x, x: -step.translate.x,