UNPKG

v-accordion

Version:

vAccordion - AngularJS multi-level accordion component

21 lines (16 loc) 433 B
// vPaneContent directive angular.module('vAccordion.directives') .directive('vPaneContent', vPaneContentDirective); function vPaneContentDirective () { return { restrict: 'E', require: '^vPane', transclude: true, template: '<div ng-transclude></div>', scope: {}, link: function (scope, iElement, iAttrs) { iAttrs.$set('role', 'tabpanel'); iAttrs.$set('aria-hidden', 'true'); } }; }