When I use a regular Angular controller, I place the controller attribute inside a DOM element, and the controller controls all DOM tree inside this element, e.g.
<div ng-controller="myController">
When I attach a controller via ui-router I do it in my app.js file, via the states config, like this:
.state('report', {
url: '/site/:site/report',
templateUrl: 'minderbinder/report/view/report.html',
controller: 'ReportController'
})
What is the scope of this controller?