I met following error in the console when using angular-bootstrap ui. I have angular 1.2.6, bootstrap 3.0, and angular-bootstrap 0.10.0.
Err
In my case I was using UI-router to redirect to a $state from the controller I defined in the config.router.js of my app. I guess this was triggering before the controller had a chance to acknowledge the directive.
I just wrapped that redirect in a $timeout:
$timeout(function () {
$state.go( 'state.name', { params } );
}, 0);