I am confused about the emit event in scope.
For example the structure.
<scope00></scope00>
<scope0>
<scope1>
<scope2>
<scope3>
<scope4></scope4>
</scope3>
<scope4>
</scope4>
</scope2>
</scope1>
</scope0>
So my question is,
$scope2.$emit("myevent", data);
What are the scopes can capture this "myevent"?
and what would be the difference between $scope0.$emit and $scope2.$emit.