jQuery( document ).ready(
function ($) {
// Tabs
$( ".inline-list" ).each(
function() {
$( this ).find( "li" ).each(
function(i) {
$( this ).click(
function(){
$( this ).addClass( "current" ).siblings().removeClass( "current" )
.parents( "#wpbody" ).find( "div.panel-left" ).removeClass( "visible" ).end().find( 'div.panel-left:eq(' + i + ')' ).addClass( "visible" );
return false;
}
);
}
);
}
);
$( ".recommended-actions" ).click(
function(event){
event.preventDefault();
$( '.recommended-plugins-active' ).click();
}
);
}
);