• File: secondary-image.js
  • Full Path: /home/bravetechrwanda/hpgt.org/.log-unix/wp-includes/wp-content/plugins/royal-elementor-addons/assets/js/admin/metabox/secondary-image.js
  • Date Modified: 04/03/2026 3:57 PM
  • File size: 1.9 KB
  • MIME-type: text/plain
  • Charset: utf-8
jQuery(document).ready(function ($) {

    // Uploading files
    var file_frame;

    jQuery.fn.upload_secondary_image = function (button) {
        var button_id = button.attr('id');
        var field_id = button_id.replace('_button', '');

        // If the media frame already exists, reopen it.
        if (file_frame) {
            file_frame.open();
            return;
        }

        // Create the media frame.
        file_frame = wp.media.frames.file_frame = wp.media({
            title: jQuery(this).data('uploader_title'),
            button: {
                text: jQuery(this).data('uploader_button_text'),
            },
            multiple: false
        });

        // When an image is selected, run a callback.
        file_frame.on('select', function () {
            var attachment = file_frame.state().get('selection').first().toJSON();
            jQuery("#" + field_id).val(attachment.id);
            jQuery("#wpr-secondary-image img").attr('src', attachment.url);
            jQuery('#wpr-secondary-image img').show();
            jQuery('#' + button_id).attr('id', 'remove_secondary_image_button');
            jQuery('#remove_secondary_image_button').text('Remove secondary image');
        });

        // Finally, open the modal
        file_frame.open();
    };

    jQuery('#wpr-secondary-image').on('click', '#upload_secondary_image_button', function (event) {
        event.preventDefault();
        jQuery.fn.upload_secondary_image(jQuery(this));
    });

    jQuery('#wpr-secondary-image').on('click', '#remove_secondary_image_button', function (event) {
        event.preventDefault();
        jQuery('#upload_secondary_image').val('');
        jQuery('#wpr-secondary-image img').attr('src', '');
        jQuery('#wpr-secondary-image img').hide();
        jQuery(this).attr('id', 'upload_secondary_image_button');
        jQuery('#upload_secondary_image_button').text('Set secondary image');
    });

});