Header title becomes clickable if numbers

Hi! I see that the browser on iOS (and maybe Android too) makes numbers inside the app clickable as phone numbers probably. See screenshot. I’ve circled what becomes clickable, and shouldn’t!

This is how my views are made up:

<ion-view title="{{ title }}">
    <ion-nav-buttons side="left">
        <button menu-toggle="left" class="button button-icon icon ion-navicon"></button>
    </ion-nav-buttons>
    <ion-content class="has-header padding" on-swipe-right="onSwipeRight()" on-swipe-left="onSwipeLeft()">

Can I somehow make the InAppBrowser not behave as the default browser?

Put this meta in your index.html:

<meta name="format-detection" content="telephone=no">

Hope that fixes your issue.

1 Like

Ah, yes indeed it worked. Thanks!