My Angular application structure is as follows:
App.js
angular.module('RateRequestApp', [ 'RateRequestApp.services', 'RateRequestApp.controllers', 'ui.bootstrap', 'angular-loading-bar', 'textAngular', 'angularFileUpload' ]);
I use different HTML files for different pages, and I do not use Angular $route , but still I want to use the same application on all pages with different controllers.
As you can see, I am inserting third-party modules into my application. The problem is that on some pages I do not need some of these modules, how can I avoid them where I do not need them?
Athul source share