";
} else {
// Si es Facebook
var iframe = "
aaaa";
}
}
$('#myModal').find('.modal-body').append(iframe);
$("a.link_youtube").ntg_link_video();
$('#myModal').modal('show');
$('#myModal').on('hidden.bs.modal', function (e) {
$('#myModal').find('.modal-body').empty();
})
}
});
// 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");
}*/
if(!$(this).hasClass("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();
}
/******************
** PLACEHOLDER **
******************/
$(".form_text, .form_number").each(function () {
var inp = $("input", this);
//var val = $(inp).val();
var ph = $("span.ntg-formulario-texto-derecha", this);
var val = "";
if (ph) {
val = $(ph).html();
}
$(ph).remove();
$(inp).attr("placeholder", val);
});
/******************
** ICONOS **
******************/
$(".usuario, .home, .password, .telefono, .movil , .direccion ,.email, .numero").each(function () {
$(this).find("input").before("
");
var clase = $(this).attr("class");
if ($(this).hasClass("usuario")) {
$(this).find("div.icon").html("
");
} else if ($(this).hasClass("home")) {
$(this).find(".icon").append("
");
} else if ($(this).hasClass("password")) {
$(this).find(".icon").append("
");
} else if ($(this).hasClass("telefono")) {
$(this).find(".icon").append("
");
} else if ($(this).hasClass("movil")) {
$(this).find(".icon").append("
");
} else if ($(this).hasClass("direccion")) {
$(this).find(".icon").append("
");
} else if ($(this).hasClass("email")) {
$(this).find(".icon").append("
");
} else {
$(this).find(".icon").append("
");
}
$(this).find("div.icon, input").wrapAll("
");
});
/*****************************************************
** Ingresar solo números para los campos numericos **
*****************************************************/
$(".form_number").keypress(function (e) {
//if the letter is not digit then display error and don't type anything
if (e.which != 8 && e.which != 0 && (e.which < 48 || e.which > 57)) {
//display error message
$("#errmsg").html("Digits Only").show().fadeOut("slow");
return false;
}
});
// $(".articulo .binary-foto_marquesina a:last-child").addClass("d-none");
$(".blank a").prop("target","_blank");
//ajuste botones slider programas home
$(".recuadros-recursos-2 .recuadro").each(function () {
var caption = $(this).find(".binary-boton .caption p");
var boton = $(this).find(".binary-boton a");
$(caption).appendTo(boton);
});
$(".recuadros-recursos-2 .recuadro .binary-boton a").addClass("btn btn-secondary mt-4");
$(".recuadros-recursos-2 .recuadro .binary-boton a img").remove();
});
$(window).on("load", function () {
// Validar la miga de pan
if ($(".breadcrumb").length > 0) {
}
});
-->