░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/cultivarts/wp-content/themes/total/inc/js
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: admin-scripts.js
var selector; function upload_media_image(selector){ // ADD IMAGE LINK jQuery('body').on( 'click', selector , function( event ){ event.preventDefault(); var imgContainer = jQuery(this).closest('.attachment-media-view').find( '.thumbnail-image'), placeholder = jQuery(this).closest('.attachment-media-view').find( '.placeholder'), imgIdInput = jQuery(this).siblings('.upload-id'); // Create a new media frame frame = wp.media({ title: 'Select or Upload Image', button: { text: 'Use Image' }, multiple: false // Set to true to allow multiple files to be selected }); // When an image is selected in the media frame... frame.on( 'select', function() { // Get media attachment details from the frame state var attachment = frame.state().get('selection').first().toJSON(); // Send the attachment URL to our custom image input field. imgContainer.html( '<img src="'+attachment.url+'" style="max-width:100%;"/>' ); placeholder.addClass('hidden'); imgIdInput.val( attachment.url ).trigger('change'); }); // Finally, open the modal on click frame.open(); }); } function delete_media_image(selector){ // DELETE IMAGE LINK jQuery('body').on( 'click', selector, function( event ){ event.preventDefault(); var imgContainer = jQuery(this).closest('.attachment-media-view').find( '.thumbnail-image'), placeholder = jQuery(this).closest('.attachment-media-view').find( '.placeholder'), imgIdInput = jQuery(this).siblings('.upload-id'); // Clear out the preview image imgContainer.find('img').remove(); placeholder.removeClass('hidden'); // Delete the image id from the hidden input imgIdInput.val( '' ).trigger('change'); }); } jQuery(document).ready(function(jQuery) { upload_media_image('.total-upload-button'); delete_media_image('.total-delete-button'); });
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 admin-scripts.js
JS
1.8 KB
2016-11-30 12:14
EDIT
📄 chosen.jquery.js
JS
43.1 KB
2016-11-30 12:14
EDIT
📄 customizer-scripts.js
JS
5.6 KB
2016-11-30 12:14
EDIT