File: //home/awaldron/_domains/waldroninteractive.com/wp-content/themes/minione/assets/js/init.js
jQuery(document).ready(function($){
/*----------------------------------------------------------------------------------*/
/* Display post format meta boxes as needed
/*----------------------------------------------------------------------------------*/
$('#post-formats-select input').change(checkFormat);
$('.rwmb-input input').change(checkFormat);
function checkFormat(){
var format = $('#post-formats-select input:checked').attr('value');
//only run on the posts page
if(typeof format != 'undefined'){
$('#post-body div[id^=klb-blogmeta-]').hide();
$('#post-body #klb-blogmeta-'+format+'').stop(true,true).fadeIn(500);
$('#post-body div[id^=klb_project_]').hide();
$('#post-body #klb_project_'+format+'').stop(true,true).fadeIn(500);
}
}
$(window).on('load', function() {
checkFormat();
})
});