I've been playing around with the positioning Famo.us course: http://famo.us/university/famous-101/positioning/
On page 4 they talk about chaining modifiers. Why is it not possible to reuse the same modifier more than once?
I tried the following code from the example:
mainContext
.add(translateModifierOne)
.add(rotateModifierOne)
.add(redSurface);
mainContext
.add(rotateModifierTwo)
.add(rotateModifierOne)
.add(translateModifierTwo)
.add(greySurface);
mainContext
.add(rotateModifierTwo)
.add(greySurface);
Inspecting the DOM, I only see a single .
Thanks,
JD