I would like to access my $scope
variable in Chrome\'s JavaScript console. How do I do that?
I can neither see $scope
nor the name of my mo
Just assign $scope
as a global variable. Problem solved.
app.controller('myCtrl', ['$scope', '$http', function($scope, $http) {
window.$scope = $scope;
}
We actually need $scope
more often in development than in production.
Mentioned already by @JasonGoemaat but adding it as a suitable answer to this question.