File: /storage/v6964/2foodfactor/public_html/wp-content/plugins/phone-directory/embed/js/embed-form.js
function copyToClipboard(elem) {
// create hidden text element, if it doesn't already exist
var targetId = "_hiddenCopyText_";
var isInput = elem.tagName === "INPUT" || elem.tagName === "TEXTAREA";
var origSelectionStart, origSelectionEnd;
if (isInput) {
// can just use the original source element for the selection and copy
target = elem;
origSelectionStart = elem.selectionStart;
origSelectionEnd = elem.selectionEnd;
} else {
// must use a temporary form element for the selection and copy
target = document.getElementById(targetId);
if (!target) {
var target = document.createElement("textarea");
target.style.position = "absolute";
target.style.left = "-9999px";
target.style.top = "0";
target.id = targetId;
document.body.appendChild(target);
}
target.textContent = elem.textContent;
}
// select the content
var currentFocus = document.activeElement;
target.focus();
target.setSelectionRange(0, target.value.length);
// copy the selection
var succeed;
try {
succeed = document.execCommand("copy");
} catch (e) {
succeed = false;
}
// restore original focus
if (currentFocus && typeof currentFocus.focus === "function") {
currentFocus.focus();
}
if (isInput) {
// restore prior selection
elem.setSelectionRange(origSelectionStart, origSelectionEnd);
} else {
// clear temporary content
target.textContent = "";
}
return succeed;
}
jQuery(document).ready(function ($) {
var appendthis = ("<div class='modal-overlay js-modal-close'></div>");
/**
*
* @type {jQuery}
* Get shortcode data from custom attribute
*/
var ordering = $(".js-open-modal").data("order");
var url = $(".js-open-modal").data("url");
var mode = $(".js-open-modal").data("mode");
var list_id = $(".js-open-modal").data("list-id");
var column = $(".js-open-modal").data("column");
var style = $(".js-open-modal").data("style");
var search = $(".js-open-modal").data("search");
var category = $(".js-open-modal").data("category");
var upvote = $(".js-open-modal").data("upvote");
$('a[data-modal-id]').click(function (e) {
e.preventDefault();
$("body").append(appendthis);
$(".modal-overlay").fadeTo(500, 0.7);
//$(".js-modalbox").fadeIn(500);
var modalBox = $(this).attr('data-modal-id');
$('#' + modalBox).fadeIn($(this).data());
$('body').addClass('modalOn');
});
jQuery(document).on('click', ".js-modal-close, .modal-overlay", function(event){
// $(".js-modal-close, .modal-overlay").click(function () {
$(".modal-box, .modal-overlay").fadeOut(500, function () {
$(".modal-overlay").remove();
});
$('body').removeClass('modalOn');
});
$(window).resize(function () {
$(".modal-box").css({
//top: ($(window).height() - $(".modal-box").outerHeight()) / 2,
//left: ($(window).width() - $(".modal-box").outerWidth()) / 2
});
});
$(window).resize();
$("#generate-igcode").on("click", function () {
var list_id_ext = "&list_id=";
if( list_id != "" || list_id != null ){
list_id_ext = '&list_id=' + list_id;
}
var i_height = $("#igheight").val();
var i_width = $("#igwidth").val();
var selected_value = $(".iframe-main-select option:selected").text();
var iframe_template = '<iframe src="' + url + '/?order=' + ordering + '&mode=' + mode + list_id_ext + '&column=' + column + '&style=' + style + '&search=' + search + '&category=' + category + '&upvote=' + upvote + '" '
+ ' scrolling="yes" ' + 'height="' + i_height + 'px' + '" width="' + i_width + selected_value + '" frameborder="0"></iframe>';
$(".igcode_textarea").html(iframe_template);
copyToClipboard(document.getElementById("igcode_textarea"));
$("#igcode_textarea").select();
});
});