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
I just wanna post my solution for this error.
src="assets/bower_components/angular-bootstrap/ui-bootstrap-tpls.js"
apparently the none tpls version doesn't include those templates.
when you inject it into you app, make sure you inject ui.bootstrap and not ui.bootstrap.modal
angular.module("shiftPlanner", ['ngResource', 'ngRoute', 'ui.bootstrap']);
for more info rtfm ;)