Click the link to the right to download:
Adobe Acrobat
' +
'' +
' {{/items}}'
// @formatter:on
/* beautify preserve:end */
),
beforeRender: function (tpl, data) {
$.each(data.years, function (index, year) {
$.each(year.items, function (idx, item) {
$.each(item.docs, function (i, doc) {
// Make sure any local links open in the same window
var url = doc.docUrl.toLowerCase().split('.');
if (url[url.length - 1] != 'aspx') {
doc.blank = true;
}
});
});
});
},
complete: function () {
$('.QuarterlyResultsPanel .panel').collapse();
$('.QuarterlyResultsPanel').find('.panel-heading a').first().trigger('click');
$('.QuarterlyResultsPanel .panel-collapse')
.on('shown.bs.collapse', function () {
$('.irwexpandcollapse > span:contains("Expand All")').hide().next().show();
})
.on('hidden.bs.collapse', function () {
if ($('.QuarterlyResultsPanel .panel-collapse.show').length === 0) {
$('.irwexpandcollapse > span:contains("Expand All")').show().next().hide();
}
});
var $expandAll = $('.irwqrplus');
var $collapseAll = $('.irwqrminus');
$expandAll.on('click', function () {
$('.QuarterlyResultsPanel .panel-collapse').collapse('show');
$('.secondaryFaqAccordion .panel-collapse').collapse('show');
$expandAll.hide();
$collapseAll.show();
});
$collapseAll.on('click', function () {
$('.QuarterlyResultsPanel .panel-collapse').collapse('hide');
$('.secondaryFaqAccordion .panel-collapse').collapse('hide');
$collapseAll.hide();
$expandAll.show();
});
}
});