Ion-tabs activating automatically

Hey guys,

I’m using Ion-tabs on some pages of my project, but I’m having a problem. Whenever I access a page that has the Ion-bars, it automatically activates the first tab and redirects to that page, not letting me see the page I want.

Here is one of the pages that have Ion-tabs:

<ion-tabs class="tabs-stable tabs-icon-top">
        <ion-tab title="" icon="ion-radio-waves" href="#/app/audio1">
            <ion-nav-view name="tab2"></ion-nav-view>
        </ion-tab>
        <ion-tab title="" icon="ion-images" href="#/app/pictures">
            <ion-nav-view name="tab4"></ion-nav-view>
        </ion-tab>
        <ion-tab title="" icon="ion-videocamera" href="#/app/video">
            <ion-nav-view name="tab1"></ion-nav-view>
        </ion-tab>
        <ion-tab title="" icon="ion-document-text" href="#/app/text">
            <ion-nav-view name="tab3"></ion-nav-view>
        </ion-tab>
    </ion-tabs>