PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/ $#$#$#

Dir : /home/trave494/logokingdom.online/wp-content/plugins/wp-live-chat-support/js/
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
IP: 209.182.202.254
Choose File :

Url:
Dir : //home/trave494/logokingdom.online/wp-content/plugins/wp-live-chat-support/js/media.js

jQuery(function($){
    var tgm_media_frame_default;
    var tgm_media_frame_picture;
    var tgm_media_frame_logo;

    $(document.body).on('click.tgmOpenMediaManager', '#wplc_btn_upload_pic', function(e){
        e.preventDefault();

        if ( tgm_media_frame_picture ) {
            tgm_media_frame_picture.open();
            return;
        }

        tgm_media_frame_picture = wp.media.frames.tgm_media_frame = wp.media({
            className: 'media-frame tgm-media-frame',
            frame: 'select',
            multiple: false,
            title: 'Upload your profile pic',
            library: {
                type: 'image'
            },
            button: {
                text:  'Use as Profile Pic'
            }
        });

        tgm_media_frame_picture.on('select', function(){
            var media_attachment = tgm_media_frame_picture.state().get('selection').first().toJSON();
            jQuery('#wplc_upload_pic').val(btoa(media_attachment.url));
            jQuery("#wplc_pic_area").html("<img src=\""+media_attachment.url+"\" width='100px'/>");
        });
        tgm_media_frame_picture.open();
    });

    $(document.body).on('click.tgmOpenMediaManager', '#wplc_btn_upload_logo', function(e){
        e.preventDefault();

        if ( tgm_media_frame_logo ) {
            tgm_media_frame_logo.open();
            return;
        }

        tgm_media_frame_logo = wp.media.frames.tgm_media_frame = wp.media({
            className: 'media-frame tgm-media-frame',
            frame: 'select',
            multiple: false,
            title: 'Upload your Logo',
            library: {
                type: 'image'
            },
            button: {
                text:  'Use as Logo'
            }
        });

        tgm_media_frame_logo.on('select', function(){
            var media_attachment = tgm_media_frame_logo.state().get('selection').first().toJSON();
            jQuery('#wplc_upload_logo').val(btoa(media_attachment.url));
            jQuery("#wplc_logo_area").html("<img src=\""+media_attachment.url+"\" width='100px'/>");
        });
        tgm_media_frame_logo.open();
    });

    $(document.body).on('click.tgmOpenMediaManager', '#wplc_btn_upload_icon', function(e){
        e.preventDefault();

        if ( tgm_media_frame_default ) {
            tgm_media_frame_default.open();
            return;
        }

        tgm_media_frame_default = wp.media.frames.tgm_media_frame = wp.media({
            className: 'media-frame tgm-media-frame',
            frame: 'select',
            multiple: false,
            title: 'Upload your chat icon',
            library: {
                type: 'image'
            },
            button: {
                text:  'Use as Chat Icon'
            }
        });

        tgm_media_frame_default.on('select', function(){
            var media_attachment = tgm_media_frame_default.state().get('selection').first().toJSON();
            jQuery('#wplc_upload_icon').val(btoa(media_attachment.url));
            jQuery("#wplc_icon_area").html("<img src=\""+media_attachment.url+"\" width='100px'/>");
        });
        tgm_media_frame_default.open();
    });

    $("#wplc_btn_remove_pic").click(function() {
        $("#wplc_pic_area").empty();
        $("#wplc_upload_pic").val("");
    });
    $("#wplc_btn_remove_logo").click(function() {
        $("#wplc_logo_area").empty();
        $("#wplc_upload_logo").val("");
    });
    $("#wplc_btn_remove_icon").click(function() {
        $("#wplc_icon_area").empty();
        $("#wplc_upload_icon").val("");
    });


    $("#wplc_btn_select_default_icon").click(function() {
        $("#wplc_default_chat_icons").slideToggle();
    });

    $(".wplc_default_chat_icon_selector").click(function() {
        var image_url = $(this).attr("src");
        
        $('#wplc_upload_icon').val(btoa(image_url));
        $("#wplc_icon_area").html("<img src=\""+image_url+"\" width='100px'/>");
        $("#wplc_default_chat_icons").slideToggle();
    });

});