Your IP : 216.73.216.5


Current Path : /home/theafprt/fnf.group/wp-content/plugins/user-submitted-posts/resources/
Upload File :
Current File : //home/theafprt/fnf.group/wp-content/plugins/user-submitted-posts/resources/jquery.usp.admin.js

/* 
	User Submitted Posts - Plugin Settings
	@ https://perishablepress.com/user-submitted-posts/
*/

jQuery(document).ready(function($){
	
	$('.default-hidden, .mm-table-wrap, .shortcode-info').hide();
	
	// toggle all panels
	$('#mm-panel-toggle a').on('click', function(){
		$('.toggle').slideToggle(300);
		return false;
	});
	
	// toggle each panel
	$('h2').on('click', function(){
		$(this).next().slideToggle(300);
		return false;
	});
	
	// toggle form info
	$('.usp-custom-form').on('click', function(){
		$('.usp-custom-form-info').slideDown(300);
	});
	$('.usp-form').on('click', function(){
		$('.usp-custom-form-info').slideUp(300);
	});
	
	// toggle categories
	$('.usp-cat-toggle-link a').on('click', function(){
		if ($('.usp-cat-toggle-div').is(':visible')){
			$(this).text('Show categories');
		} else {
			$(this).text('Hide categories');
		}
		$(this).parent().toggleClass('toggle-open');
		$('.usp-cat-toggle-div').toggle(300);
		return false;
	});
	
	// toggle settings
	$('h3').on('click', function(){
		$(this).next().slideToggle(300);
		$(this).toggleClass('toggle-open');
		return false;
	});
	
	// image uploader
	var custom_uploader;
	$('#upload_image_button').click(function(e){
		e.preventDefault();
		if (custom_uploader) {
			custom_uploader.open();
			return;
		}
		custom_uploader = wp.media.frames.file_frame = wp.media({
			multiple: false,
			library: { type: 'image' },
			button:  { text: 'Select Image' },
			title: 'Select Default Featured Image',
		});
		custom_uploader.on('select', function() {
			console.log(custom_uploader.state().get('selection').toJSON());
			attachment = custom_uploader.state().get('selection').first().toJSON();
			$('#upload_image').val(attachment.url);
		});
		custom_uploader.open();
	});
	
});