I have the following question:
If I click on the picker (in the box), I can capture the contents of the ng-model "first game" and manipulate it in javascript as needed:
<p>Escolha o jogo</p>
<select class="image-picker show-html" ng-model="primeiroJogo">
<option
data-img-src='../public/images/logosmite.jpg'
value="Smite"
class="image-picker"
></option>
<option
data-img-src='../public/images/logohmm.jpg'
value="Heavy Metal Machines"
class="image-picker"
></option>
</select>
But what I need is to be able to capture the contents of this ng-model if the user clicks directly on the image. Would anyone know how to do this?