/home/awneajlw/work.codestechvista.com/wp-content/plugins/ignavo-core/js/widget-image.js
/* KLB Widget IMAGE UPLOAD */

!(function ($) {
	
	jQuery.noConflict();
	jQuery(document).ready(function() {
		var $ = jQuery;
		if ($('.set_custom_images').length > 0) {
			if ( typeof wp !== 'undefined' && wp.media && wp.media.editor) {
				$('.set_custom_images').on('click', function(e) {
					e.preventDefault();
					var button = $(this);
					var id = button.prev();
					wp.media.editor.send.attachment = function(props, attachment) {
						id.val(attachment.id);
						$('.widget-control-save').prop('disabled', false);
					};
					wp.media.editor.open(button);
					return false;
				});
			}
		}
	});
	
})(jQuery);