If I use a ng-view nested in an element that has a controller defined, will that controller interfere with the controllers that are loaded by ng-view (html file loaded)?
In my initial tests nothing happened, but I'm still in doubt if I tested it wrongly if it really allows it.
<div class="container-fluid" ng-controller="ExampleController">
<ng-view></ng-view>
</div>