Tab registers taps 80% time (on device only)

Hi, I have a standard tab setup and for some reason the tapping does not work all that well on device. It is fine in browser / on simulator, but on device tabs just won’t register tapping 1 out of 10 taps…

Here is the tab code:

<ion-tabs ng-controller="titleCtrl" class="tabs-icon-top tabs-color-active-positive" tabs-style="tabs-icon-top" name="main-tab" id="header">
    <ion-tab title="" id="home_tab">
        <!-- <ng-include src="titleTemplate"></ng-include> -->
        <ion-nav-view name="home"></ion-nav-view>
    </ion-tab>
    <ion-tab title="" ui-sref="tab.reset" id="main_title" icon="title_link_image">
        <!-- <ng-include src="titleTemplate"></ng-include> -->
        <ion-nav-view name="reset"></ion-nav-view>
    </ion-tab>
    <!-- Dashboard Tab -->
    <ion-tab title="12 SCREEN" ui-sref="tab.dash" class="title_tab screen12_tab">
        <ion-nav-view name="tab-dash"></ion-nav-view>
    </ion-tab>
    <!-- Chats Tab -->
    <ion-tab title="MODEL" ui-sref="tab.buildings" class="title_tab model_tab">
        <ion-nav-view name="buildings"></ion-nav-view>
    </ion-tab>
    <!-- Account Tab -->
    <ion-tab title="WEBCAM" ui-sref="tab.webcams" class="title_tab webcam_tab">
        <ion-nav-view name="webcams"></ion-nav-view>
    </ion-tab>
    </div>
</ion-tabs>