";
} else {
// Si es Facebook
var iframe = "
" +
" " +
"
'"
}
}
$(" .embed-responsive a.link_youtube").ntg_link_video();
$('#myModal').find('.modal-body').append(iframe);
$('#myModal').modal('show');
$('#myModal').on('hidden.bs.modal', function (e) {
$('#myModal').find('.modal-body').empty();
})
}
});
// Cambiar DOM de los recuadros de la caja ConTIC_home_ofertas
$("#home_ofertas > .recuadro").each(function () {
var link = $(this).find(".titulo a").prop("href");
var title = $(this).find(".titulo a").text();
$(this).find(".titulo").wrapInner("
");
$(this).find(".figure").contents().unwrap();
});
// Actualizar DOM de la caja ConTIC_home_liderDigital
var url_1 = $("#home_lider .recuadro:first-child .titulo a ").prop("href");
var url_2 = $("#home_lider .recuadro:last-child .titulo a ").prop("href");
$("#home_lider .recuadro .titulo a").contents().unwrap();
//$("#home_lider .recuadro:first-child").append("
Quiero ser lider digital");
$("#home_lider .recuadro:last-child").append("
Aprende cómo se hace, aquí");
// Actualizar recuadros de la portadillas de oferta
$("#pa_oferta .recuadro").each(function () {
$(this).find(".figure a:nth-child(2), .boton a:first-child").remove();
$(this).find(".figure a").contents().unwrap();
});
// Eliminar links de los otros recuadros de oferta que no son el primero
$("#pa_oferta div.recuadro .titulo a").contents().unwrap();
// Portadilla de noticias: si son de otro canal, abrir en nueva pestaña con canal de origen
$(".otro-canal .recuadro .titulo").each(function () {
var clases = $(this).attr("class").split(" ");
if (clases[2] != "cid-" + __cid) {
$(this).find("a").attr("target", "blank");
}
});
// Validar si el recurso foto_portadilla esta incluido en el cuerpo simple del eidox
if ($(".articulo > .cuerpo .binary-foto_marquesina").length > 0) {
$(".articulo > .figure.binary-foto_marquesina").hide();
}
// Actualizar la estructura del slider del home
if (("#recuadros_articulo_15314").length > 0) {
$("#recuadros_articulo_15314 .recuadro").each(function () {
var enlace = $(this).find(".titulo a").prop("href");
$(this).find(".texto-banner").wrapAll("
");
if ($(this).find(".titulo a").prop("target") != undefined) {
$(this).find("a.link_slider").attr("target", "blank");
}
$(this).find(".titulo a").contents().unwrap();
});
}
//Ajustes remover links de recursos
$(".binary-icono_titulo a img").unwrap();
$(".binary-icono_titulo img + a").remove();
$(".btn-ayuda > a:first-child").remove();
$("#faq .titulo, #faq .figure").wrapAll('
');
});
$(window).on("load", function () {
// Validar la miga de pan
if ($(".breadcrumb").length > 0) {
if ($(".breadcrumb a.aid-150022").length > 0 || $(".breadcrumb a.aid-150024").length > 0) {
console.log("existe");
$(".breadcrumb span a:nth-child(1)").removeClass("current");
$(".breadcrumb span a:nth-child(2)").addClass("current");
}
}
});
// Dropdown menu principal
$("#i__ConTIC_tr_menu_1 > ul > li:nth-child(2)").click(function () {
$("#i__ConTIC_tr_menu_1 > ul > li:nth-child(2) ul").toggleClass("show-dropdown");
});
$("#i__ConTIC_tr_menu_1 > ul > li:nth-child(3)").click(function () {
$("#i__ConTIC_tr_menu_1 > ul > li:nth-child(3) ul").toggleClass("show-dropdown");
});
$(document).click((event) => {
if (!$(event.target).closest('#i__ConTIC_tr_menu_1 > ul > li:nth-child(2)').length) {
$("#i__ConTIC_tr_menu_1 > ul > li:nth-child(2) ul").removeClass("show-dropdown");
}
if (!$(event.target).closest('#i__ConTIC_tr_menu_1 > ul > li:nth-child(3)').length) {
$(" #i__ConTIC_tr_menu_1 > ul > li:nth-child(3) ul").removeClass("show-dropdown");
}
});
-->