HEX
Server: LiteSpeed
System: Linux s787.bom1.mysecurecloudhost.com 4.18.0-477.13.1.lve.el8.x86_64 #1 SMP Thu Jun 1 16:40:47 EDT 2023 x86_64
User: mobilech (5348)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //proc/self/cwd/wp-content/plugins/html5-video-player/tinymce/tinymce.js
jQuery(document).ready(function ($) {
  const sliderList = jQuery("#h5vptinymce_select_slider");

  // END LOAD MEDIA

  jQuery("body").delegate("#h5vp_shortcode_button", "click", function () {

    mg_H = 300;
    mg_W = 550;
    sliderList.find("option").remove();
    jQuery("<option/>").val(0).text("Loading...").appendTo(sliderList);

    setTimeout(function () {
      tb_show("Insert Html5 Video Player", "#TB_inline?height=" + mg_H + "&width=" + mg_W + "&inlineId=h5vpmodal");
      jQuery("#TB_window").css("height", mg_H);
      jQuery("#TB_window").css("width", mg_W);
      jQuery("#TB_window").css("top", (jQuery(window).height() - mg_H) / 6 + "px");
      jQuery("#TB_window").css("left", (jQuery(window).width() - mg_W) / 4 + "px");
      jQuery("#TB_window").css("margin-top", (jQuery(window).height() - mg_H) / 6 + "px");
      jQuery("#TB_window").css("margin-left", (jQuery(window).width() - mg_W) / 4 + "px");
      jQuery("#TB_window").css("height", "auto");
      jQuery("#TB_ajaxContent").css("height", "auto");
      jQuery("select#h5vptinymce_select_slider").val("select");

      //load ajax to grab slider list ( we need this methode to avoid conflict in media editor with another plugin )
      grabslider();
    }, 300);
  });

  jQuery("body").delegate("#h5vp_add_video_button", "click", function () {
    var tnc_file_uploader = wp
      .media({
        title: "Upload File",
        button: {
          text: "Get Link",
        },
        library: { type: "video/mp4" },
        multiple: false,
      })
      .on("select", function () {
        var attachment = tnc_file_uploader.state().get("selection").first().toJSON();
        wp.media.editor.insert('[video_player file="' + attachment?.url + '"]');
      })
      .open();
  });

  // add the shortcode to the post editor
  jQuery("#h5vp_insert_scrt").on("click", function () {
    if (jQuery("#h5vptinymce_select_slider").val() != "select") {
      var sccode;
      sccode = "[html5_video id=" + jQuery("#h5vptinymce_select_slider option:selected").val() + "]";

      if (jQuery("#wp-content-editor-container > textarea").is(":visible")) {
        var val = jQuery("#wp-content-editor-container > textarea").val() + sccode;
        jQuery("#wp-content-editor-container > textarea").val(val);
      } else {
        tinyMCE.activeEditor.execCommand("mceInsertContent", 0, sccode);
      }

      tb_remove();
    } else {
      alert("Please select slider first!");
      //tb_remove();
    }
  });

  function grabslider() {
    jQuery.ajax({
      url: h5vp_tinymce_vars.ajax_url,
      data: {
        action: "h5vp_pro_grab_slider_list_ajax",
        nonce: h5vp_tinymce_vars.nonce,
      },
      dataType: "JSON",
      type: "POST",
      success: function (response) {
        sliderList.find("option").remove();
        jQuery("<option/>").val("select").text("- Select Player -").appendTo(sliderList);
        jQuery.each(response, function (i, option) {
          jQuery("<option/>").val(option.val).text(option.title).appendTo(sliderList);
        });
      },
      error: function (errorThrown) {
        jQuery("<option/>").val("select").text("- Select Player -").appendTo(sliderList);
      },
    }); // End Grab
  }
});