Closed Clan-Utility closed 8 years ago
I have something like this
<v-accordion class="vAccordion--default" multiple> <v-pane ng-repeat="...." expanded="$first"> <v-pane-header ng-click="vm.onClick($event)">
And in controller
vm.onClick = function(event) { event.stopPropagation(); event.preventDefault();
But this does not work ...
Realized this can be achieving as
<v-pane-header> <div ng-click="vm.onClick($event)">
I have something like this
And in controller
But this does not work ...