I have this controller that is defined on the body element:
app.controller('bodyController', ['$injection1', '$injection2',
function($injection1, $injection2){
// doing stuff here
}]);
Now somewhere else, I want to be able to inject another dependency into this controller. Pseudo-code:
app.controller('bodyController').inject(['$injection3', function($injection3){
// doming more stuff here
});
Is this possible at all?