I'm curious whether Angular.js $http interceptors are shared across the entire application. What if I have a module called myDependentApp
, which is used by multiple apps? This module has some interceptors configured to manage $http requests/responses. I include this module by declaring it in the application bootstrap:
angular.module('myApp', ['myDependentApp']);
Then, I have an application template:
<html ng-app="myApp">
Will myDependentApp
's interceptors be active in myApp
?
Thanks for the assistance.