File "admin_settings.js"
Full Path: /home/ozbarhaber/public_html/wp-content/plugins/autoptimize/classes/critcss-inc/js/admin_settings.js
File size: 393 bytes
MIME-type: text/plain
Charset: utf-8
// Toggle button control for collapsible elements
jQuery(".toggle-btn").click(function () {
$header = jQuery(this);
$content = $header.next();
$content.slideToggle(250, "swing", function () {
jQuery("span.toggle-indicator", $header).toggleClass('dashicons-arrow-down');
});
});
// Attach an event to export buttons
jQuery("#exportSettings").click(function(){exportSettings();});