How to access the scope variable widgets from chrome\'s console
function MyCntrl($scope) {
$scope.widgets = [
{text:\'Widget #1\', datarow:1, dataco
The scope is bound to the DOM so you need to grab an element and use some angular code to get the scope.
Your best bet is to get an element that the Controller is bound to and have a look at the scope on that.
Here is the answer How do I access the $scope variable in browser's console using AngularJS?