I have a very simple modal view created:
<ion-modal-view>
<ion-tabs class="tabs-light">
<ion-tab title="TAB 1">
<ion-content>
<div>TAB 1</div>
</ion-content>
</ion-tab>
<ion-tab title="TAB 2">
<ion-content>
<div>TAB 2</div>
</ion-content>
</ion-tab>
</ion-tabs>
</ion-modal-view>
When I switch from TAB 1, to TAB 2, and back to TAB 1, the content from TAB 1 is gone. This broke when I upgraded from the beta to version 1. Any thoughts?