I have a list I want to be animated, but it doesn't work. I'm using both angularjs 1.2.0 rc1 and rc2 (not at the same time, for testing).
Here's my list:
<ul class="list-group">
    <li class="list-group-item" ng-repeat="object in logstoreList" ng-animate="'demo'">
        <a ui-sref="logstores.takelist({log : object.logstore})" ng-switch="object.subfolder">
            <span ng-switch-when="true" class="badge">-</span>
            <span ng-switch-default class="badge">+</span>
        {{object.extname}}
        </a>
    </li>
</ul>
and the CSS-Content:
.demo-enter {
   -webkit-transition: all 1s linear;
   transition: all 1s linear;
   background: #000;
}
.demo-enter.demo-enter-active {
   background: #fc3;
}
Am I missing something?

