I\'m currently testing out angular bootstrap-UI locally on my machine. When I try to recreate the example of accordion and dialog box. I get this error message
My 5 cents after wasting 2 hours with this problem. You should:
custom.tpls.js in my case it was ui-bootstrap-custom-0.10.0.min.js'ui.bootstrap.yourfeature' in my case it was 'ui.bootstrap.modal'and also include 'ui.bootstrap.tpls'. So my module complete depencies look like this:
var profile = angular.module("profile",[
'ui.bootstrap.modal',
'ui.bootstrap.tpls'
]);