astroport/doc/Fat Protocols | Union Squar.../mpp-frontend.js

9 lines
331 B
JavaScript

jQuery( document ).ready( function( $ ) {
$( '.mpp-gutenberg-tab' ).on( 'click', function( e ) {
$('.mpp-author-tabs li').removeClass('active');
$(this).addClass('active');
var $tabs = $('.mpp-tab').removeClass('mpp-tab-active');
var new_tab = $(this).data('tab');
$('.' + new_tab).addClass('mpp-tab-active');
} );
} );