Sha256: db077347d78a23233324ca8ca41baaee0b386c7c2b7757123f1deb594b293cd7
Contents?: true
Size: 1.13 KB
Versions: 4
Compression:
Stored size: 1.13 KB
Contents
$(document).ready(function() { /* ======= DEMO THEME CONFIG ====== */ $('#config-trigger').click(function(e){ e.preventDefault(); //$("#config-panel").toggleClass('config-panel-open'); if($(this).hasClass('config-panel-open')){ $("#config-panel").animate({ right: "-=190" //same as the panel width }, 500); $(this).removeClass('config-panel-open').addClass('config-panel-hide'); } else { $("#config-panel").animate({ right: "+=190" //same as the panel width }, 500); $(this).removeClass('config-panel-hide').addClass('config-panel-open'); } }); $('#config-close').on('click', function(e) { e.preventDefault(); $('#config-trigger').click(); }); $('#color-options a').on('click', function(e) { var $styleSheet = $(this).attr('data-style'); $('#theme-style').attr('href', $styleSheet); var $listItem = $(this).closest('li'); $listItem.addClass('active'); $listItem.siblings().removeClass('active'); e.preventDefault(); }); });
Version data entries
4 entries across 4 versions & 1 rubygems