I\'ve inherited an angular project, and it\'s having problems loading the ui-bootstrap-tpls modules.
For each directive it\'s trying to use from bootstrap, I get som
Yep. I solved this issue like this.. and by including ui-bootstrap-tpls.js
angular.module('mainModule', ['ui.bootstrap', 'sub-module']);
angular.module('sub-module', ['ui.bootstrap.modal']);
However i am not sure if other cases like template-caching will cause the issue or not. At least not for me..