Is there a way to find the controller for an element through Chrome's console? I can get a reference to the component by selecting the element in the Elements Panel and using
var c = angular.element($0);
c has a controller property (looks like a constructor), but I'm not sure what to do with this. Is there any way to find the controller's name from here?