I have general container which is full screen background and inside it i have small div with content. In general container i have ng-click which activated when i click on small div. How can i disable that?
<div class="generalContainer" ng-click="onlyBackground()">
<div class="smallDiv">Content</div>
</div>
I have tried to add z-index
on background and small div, but still function activated on small div. I am not sure if it's css matter or angular.