Closed peter00155 closed 9 years ago
if you're using https://angular-ui.github.io/bootstrap/ It's a namespace collision with ui-bootstrap
accordionConfig
collides with ui-bootstraps similar angular constant.
Aaaaaand how to fix this ? I want to use both libs.
Define vAccordion after ui.bootstrap in angular.module. Like this:
var myApp = angular.module('myApp', [ 'ui.bootstrap', 'vAccordion']);
Thanks. It works :)
Im trying to display this:
And this message appear: TypeError: Cannot read property 'expanded' of undefined. What can cause it?