Committee Composition
' +
'{{#types}}' +
'
' +
'{{/types}}' +
'
'
/* beautify preserve:end */
),
itemTpl: (
/* beautify preserve:start */
'
' +
'{{#members}}' +
'
' +
'
' +
'
' +
'{{firstName}}{{middleName}}{{lastName}}' +
'{{#customRoles}}{{{.}}}{{/customRoles}}' +
'
' +
'{{{composition}}}' +
'
' +
'
' +
'{{/members}}' +
'
'
/* beautify preserve:end */
),
legendTpl: (
'
' +
'- = Committee Chair
' +
'- = Member
' +
'- = Executive Chair
' +
'- = Lead Director
' +
'
'
),
beforeRender: function(data) {
console.log('data', data);
},
onComplete: function() {
q4App.toggle(
$('.module-committee .module_container--tablet'), // container
'.module-committee_category', // item
'.module_header i', // toggle
'.module_items-container', // panel
false, // accordion?
false, // show all button?
true // open first?
);
}
});