I'm trying to make a toggle-thing in angular, I can't understand why it doesn't work.
I exepct that when i click the a-tag, the lower div should be displayed.
<div>
<a href="#" ng-click='member = mathieu' class="mathieu">Lorem<br />Ipsum<span>Click for more</span></a>
</div>
<div ng-switch="member">
<div ng-switch-when="mathieu">
<h3>Lorem ipsum</h3>
</div>
</div>