Your IP : 216.73.216.95


Current Path : /var/www/html/soar-backup/wp-content/themes/NativeChurch/js/
Upload File :
Current File : /var/www/html/soar-backup/wp-content/themes/NativeChurch/js/media-uploader.js

jQuery(function($){
    $(".select-about-image").live('click', function() {
        var elementId = $(this).attr('id');
        var displayId = elementId.replace('select-image', 'display-image');
		var textId = elementId.replace('select-image', 'description');
        var inputId = elementId.replace('select-image', 'image');
        var fileFrame = wp.media.frames.file_frame = wp.media({
            multiple: true
        });
        fileFrame.on('select', function() {
            var attachment = fileFrame.state().get('selection').first().toJSON();
	    $('#' + inputId).val(attachment.id);
            $('#' + displayId).html('<img src="' + attachment.url + '" style="max-width: 226px;" />');
			
             str='';
			$.each(eval(fileFrame.state().get('selection').toJSON()), function(key,value) {
                  str+=value.id+' ,';
				 
           });
           $('#' + textId).html(str.substring(0,str.length-1));
          });
        fileFrame.open();
    });
});