My `.complete` callback is called before the transition and after. I have to use this workaround to use it under current circumstances: ``` javascript var c = 0; el.transition({ // ... complete: function() { if (++c % 2 == 0) { // ... } } }); ```