Make single view selectable

hello

i need to make a single view’s contents selectable. all solutions i found applies somehow to all app so it doesn’t fit my needs. template as follows:

<ion-view title="Placar" id="page8" style="" cache-view="false">
  <ion-content padding="true" class="has-header">
    <h1 id="placar-heading3" style="color:#000000;">{{ details.mes }}</h1>
      <ion-text>
        <p style="font-family: monospace">Nome.............. TT PT DO FS SP</p>
      </ion-text>
      <ion-text ng-repeat="d in details.ranking">
        <p style="margin-bottom: 2px; font-family: monospace"><span ng-bind-html="d.rank"></span> {{ d.nome }} {{ d.tt }} {{ d.pt }} {{ d.do }} {{ d.fds }} {{ d.sp }}</p>
      </ion-text>
      <ion-text>
        <p style="font-weight: bold">atualizado em {{ details.atualizacao }}</p>
      </ion-text>
  </ion-content>
</ion-view>

any clue on how to make only this view’s content selectable ?

thank you.