Skip to content
Snippets Groups Projects
toggle-actions-panel.js 369 B
Newer Older
  • Learn to ignore specific revisions
  • (function ($) {
    
        'use strict';
    
    
        function toggleActionsPanel() {
            $('.js-actions-toggle').click(function (e) {
    
                e.preventDefault();
                this.classList.toggle('is-active');
                this.nextElementSibling.classList.toggle('is-visible');
            });
        }
    
        // Show actions sidebar on mobile
        toggleActionsPanel();
    
    })(jQuery);