/** * Theme options Javascript for Admin Panel * * @package AlaskA * @since AlaskA 1.0.0 */ /** * Show && hide sections panel admin * * @package AlaskA * @since AlaskA 1.0.0 */ jQuery(document).ready(function($){ $(".rwd-container").hide(); // Recocer active sections from cookie var activeSections = []; activeSections = unescape($.cookie('activeSections')).split(','); for (var i = activeSections.length - 1; i >= 0; i--){ $(activeSections[i]).toggleClass("active").next().slideToggle("fast"); }; $.removeCookie('activeSections'); $("h3.rwd-toggle").click(function(){ $(this).toggleClass("active").next().slideToggle("fast"); return false; //Prevent the browser jump to the link anchor }); // Save in cookie active sections $("#submit").click(function(){ var activeSections = []; var elements = document.getElementsByClassName("rwd-toggle active"); for (i=0;i