mirror of
https://github.com/galileotechmedia/google-faqs-schema.git
synced 2026-02-24 00:22:36 +08:00
62 lines
No EOL
1.9 KiB
JavaScript
62 lines
No EOL
1.9 KiB
JavaScript
jQuery(document).ready( function($) {
|
|
|
|
jQuery('input#ffws_option_media_manager').click(function(e) {
|
|
|
|
e.preventDefault();
|
|
var image_frame;
|
|
if(image_frame){
|
|
image_frame.open();
|
|
}
|
|
// Define image_frame as wp.media object
|
|
image_frame = wp.media({
|
|
title: 'Select Media',
|
|
multiple : false,
|
|
library : {
|
|
type : 'image',
|
|
}
|
|
});
|
|
|
|
image_frame.on('close',function() {
|
|
var selection = image_frame.state().get('selection');
|
|
var gallery_ids = new Array();
|
|
var my_index = 0;
|
|
selection.each(function(attachment) {
|
|
gallery_ids[my_index] = attachment['id'];
|
|
my_index++;
|
|
});
|
|
var ids = gallery_ids.join(",");
|
|
jQuery('input#ffws_image_id').val(ids);
|
|
Refresh_Image(ids);
|
|
});
|
|
|
|
image_frame.on('open',function() {
|
|
// On open, get the id from the hidden input
|
|
// and select the appropiate images in the media manager
|
|
var selection = image_frame.state().get('selection');
|
|
var ids = jQuery('input#ffws_image_id').val().split(',');
|
|
ids.forEach(function(id) {
|
|
var attachment = wp.media.attachment(id);
|
|
attachment.fetch();
|
|
selection.add( attachment ? [ attachment ] : [] );
|
|
});
|
|
|
|
});
|
|
|
|
image_frame.open();
|
|
});
|
|
|
|
});
|
|
|
|
// Ajax request to refresh the image preview
|
|
function Refresh_Image(the_id){
|
|
var data = {
|
|
action: 'ffws_get_image',
|
|
id: the_id
|
|
};
|
|
jQuery.get(ajaxurl, data, function(response) {
|
|
if(response.success === true) {
|
|
console.log(response.data.image);
|
|
jQuery('#ffws-image-preview-image').replaceWith( response.data.image );
|
|
}
|
|
});
|
|
} |