I am new to AngularJS and find it very interesting, but I am a bit unclear about the following situation.
app.factory(\'deleteFac\', function($http){ var fa
The following trick is a very bad practice, but you can use it if you are in a hurry:
Exchange the $scope with: angular.element('[ng-controller=CtrlName]').scope()
$scope
angular.element('[ng-controller=CtrlName]').scope()