Hello,
I have the following template for custom popover window:
<ion-popover-view class="customPopup">
<ion-header-bar class="bar bar-header">
<h1 class="title">Available sounds</h1>
</ion-header-bar>
<ion-tabs class="tabs-icon-only tabs-top tabs-positive">
<ion-tab title="{{ 'SOUNDS' | translate }}">
<ion-content class="has-header">
<div class="item item-button-right" ng-repeat="sound in availableSounds">
{{sound.name}}
<button class="button button-positive" ng-click="addSoundToSelection({{$index}})">
<i class="icon ion-plus-circled"></i>
</button>
</div>
</div>
</ion-content>
</ion-tab>
<ion-tab title="{{ 'PRE-PREPARED_MIX' | translate }}">
<ion-content class="has-header">
<div class="item item-button-right" ng-repeat="sound in availablePrepreparedSounds">
{{sound.name}}
<button class="button button-positive" ng-click="addSoundToSelection({{$index}})">
<i class="icon ion-plus-circled"></i>
</button>
</div>
</ion-content>
</ion-tab>
</ion-tabs>
</ion-popover-view>
It produces successful result on Browser and Android but on iOS emulator is result damaged (see image below).
enter image description here
How can i solve it please?
Many thanks for any advice.
