()
| 4949 | var animators = animatable.animators.slice(); |
| 4950 | var count = animators.length; |
| 4951 | function done() { |
| 4952 | count--; |
| 4953 | if (!count) { |
| 4954 | callback && callback(); |
| 4955 | } |
| 4956 | } |
| 4957 | |
| 4958 | // No animators. This should be checked before animators[i].start(), |
| 4959 | // because 'done' may be executed immediately if no need to animate. |
no test coverage detected