I’m attempting to create a slide-box that has vertically scrollable cards in each slide. The mark up is like this:
<content has-header="true" scroll="false">
<slide-box>
<slide>
<h4 class="padding-horizontal">Most Popular</h4>
<scroll>
<div class="list card" ng-repeat="product in mostPopular">
<div class="item">
{{ product.name }}
<span class="item-note">{{ product.price | currency }}</span>
</div>
<div class="item item-image">
<img ng-src="{{ product.img }}" alt="{{ product.name }}"/>
</div>
<div class="item item-divider padding-bottom">
<span class="item-note">{{ product.comment }}</span>
</div>
</div>
</scroll>
</slide>
//More slides like the one above.
</slide-box>
</content>
The result is that when I scroll the content is simply bounces back to the top of the scrollable section. Is this a bug or am I doing this wrong?
UPDATE: Here’s a Plunker that demonstrates the issue http://plnkr.co/edit/yFVyvWqNCQ8p9Z3Fc1IH?p=preview