File: /home/aprilnet/public_html/hadoukencabs.com/wp-content/plugins/tt-plugin/js/posts-meta.js
jQuery(document).ready(function($){
'use strict',
$('#post-formats-select input').change(checkFormate);
function checkFormate(){
var formate = $('#post-formats-select input:checked').attr('value');
if(typeof formate != 'undefined'){
$('div[id^=tt-post-format-]').hide();
$('div[id^=tt-post-format-'+formate+']').stop(true,true).fadeIn(600);
}
}
$(window).load(function(){
'use strict',
checkFormate();
})
});