| 1 |
// Toggle button control for collapsible elements |
| 2 |
jQuery(".toggle-btn").click(function () { |
| 3 |
$header = jQuery(this); |
| 4 |
$content = $header.next(); |
| 5 |
$content.slideToggle(250, "swing", function () { |
| 6 |
jQuery("span.toggle-indicator", $header).toggleClass('dashicons-arrow-down'); |
| 7 |
}); |
| 8 |
}); |
| 9 |
|
| 10 |
// Attach an event to export buttons |
| 11 |
jQuery("#exportSettings").click(function(){exportSettings();}); |