In my app i'm using some logic after my element was clicked.
For example:
html
<h3 ng-click="showAlert('text')">this is text! (try to click and select)</h3>
js
$scope.showAlert = function(text) {
console.log('click!');
};
and when i click on element: all is ok. All done, as was expected.
But!
Why, when i try to select text, my event is fired too?
how to skip select event?
plunker: click

jirado)