I am new to angularjs, I know that $scope
represent a connection between the controller and the view, But is there a way besides looking for class="ng-scope"
to get the scope element, I mean something like that:
function someControllerFunc($scope){
$scope.element;
}
I know that same controller can be assigned to multiple scopes, So maybe it is not possible.