I have an accordion (extensible / compressible) using Angular UI Bootstrap , which has three panels.

I do not want the user to be able to open several panels at once. The documentation provides this option.
<accordion close-others="oneAtATime">
With this in the controller
$scope.oneAtATime = true;
But I can still open several panels at once. What am I missing?
source
share