File size: 3Kb
jQuery(document).ready(function($){
var vmag_upload;
var vmag_selector;
function vmag_add_file(event, selector) {
var upload = $(".uploaded-file"), frame;
var $el = $(this);
vmag_selector = selector;
event.preventDefault();
// If the media frame already exists, reopen it.
if ( vmag_upload ) {
vmag_upload.open();
} else {
// Create the media frame.
vmag_upload = wp.media.frames.vmag_upload = wp.media({
// Set the title of the modal.
title: $el.data('choose'),
// Customize the submit button.
button: {
// Set the text of the button.
text: $el.data('update'),
// Tell the button not to close the modal, since we're
// going to refresh the page when the image is selected.
close: false
}
});
// When an image is selected, run a callback.
vmag_upload.on( 'select', function() {
// Grab the selected attachment.
var attachment = vmag_upload.state().get('selection').first();
vmag_upload.close();
vmag_selector.find('.upload').val(attachment.attributes.url);
if ( attachment.attributes.type == 'image' ) {
vmag_selector.find('.screenshot').empty().hide().append('<img src="' + attachment.attributes.url + '" style="width:100%;">').slideDown('fast');
}
vmag_selector.find('.ap-upload-button').unbind().addClass('remove-file').removeClass('ap-upload-button').val(vmag_l10n.remove);
vmag_selector.find('.of-background-properties').slideDown();
vmag_selector.find('.remove-image, .remove-file').on('click', function() {
vmag_remove_file( $(this).parents('.section') );
});
});
}
// Finally, open the modal.
vmag_upload.open();
}
function vmag_remove_file(selector) {
selector.find('.remove-image').hide();
selector.find('.upload').val('');
selector.find('.of-background-properties').hide();
selector.find('.screenshot').slideUp();
selector.find('.remove-file').unbind().addClass('ap-upload-button').removeClass('remove-file').val(vmag_l10n.upload);
// We don't display the upload button if .upload-notice is present
// This means the user doesn't have the WordPress 3.5 Media Library Support
if ( $('.section-upload .upload-notice').length > 0 ) {
$('.ap-upload-button').remove();
}
selector.find('.ap-upload-button').on('click', function(event) {
vmag_add_file(event, $(this).parents('.sub-option'));
});
}
$('body').on('click', '.remove-image, .remove-file', function() {
vmag_remove_file( $(this).parents('.sub-option') );
});
$('body').on('click', '.ap-upload-button', function( event ) {
vmag_add_file(event, $(this).parents('.sub-option'));
});
});