????
Current Path : /home/darkwebsol/customapparelmanufacturers.com/wp-content/plugins/goal-framework/assets/ |
Current File : /home/darkwebsol/customapparelmanufacturers.com/wp-content/plugins/goal-framework/assets/upload.js |
jQuery(document).ready(function($){ var optionsframework_upload; var optionsframework_selector; function optionsframework_add_file(event, selector) { var upload = $(".uploaded-file"), frame; var $el = $(this); optionsframework_selector = selector; event.preventDefault(); // If the media frame already exists, reopen it. if ( optionsframework_upload ) { optionsframework_upload.open(); } else { // Create the media frame. optionsframework_upload = wp.media.frames.optionsframework_upload = wp.media({ // Set the title of the modal. title: "Select Image", // Customize the submit button. button: { // Set the text of the button. text: "Selected", // 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. optionsframework_upload.on( 'select', function() { // Grab the selected attachment. var attachment = optionsframework_upload.state().get('selection').first(); optionsframework_upload.close(); optionsframework_selector.find('.upload_image').val(attachment.attributes.url).change(); if ( attachment.attributes.type == 'image' ) { optionsframework_selector.find('.screenshot').empty().hide().prepend('<img src="' + attachment.attributes.url + '">').slideDown('fast'); } }); } // Finally, open the modal. optionsframework_upload.open(); } function optionsframework_remove_file(selector) { selector.find('.screenshot').slideUp('fast').next().val('').trigger('change'); } $('body').delegate('.upload_image_action .remove-image', 'click', function(event) { optionsframework_remove_file( $(this).parent().parent() ); }); $('body').delegate('.upload_image_action .add-image', 'click', function(event) { optionsframework_add_file(event, $(this).parent().parent()); }); });