window.onload=function(){
angular.module('app', [])
.directive("masonry", function() {
var NGREPEAT_SOURCE_RE = '';
return {
compile: function(element, attrs) {
// auto add animation to brick element
var animation = attrs.ngAnimate || "'masonry'";
var $brick = element.children();
$brick.attr("ng-animate", animation);
// generate item selector (exclude leaving items)
var type = $brick.prop('tagName');
var itemSelector = type + ":not([class$='-leave-active'])";
return function(scope, element, attrs) {
var options = angular.extend({
itemSelector: itemSelector
}, scope.$eval(attrs.masonry));
// try to infer model from ngRepeat
if (!options.model) {
var ngRepeatMatch = element.html().match(NGREPEAT_SOURCE_RE);
if (ngRepeatMatch) {
options.model = ngRepeatMatch[4];
}
}
// initial animation
element.addClass('masonry');
// Wait inside directives to render
setTimeout(function() {
element.masonry(options);
element.on("$destroy", function() {
element.masonry('destroy')
});
if (options.model) {
scope.$apply(function() {
scope.$watchCollection(options.model, function(_new, _old) {
if (_new == _old) return;
// Wait inside directives to render
setTimeout(function() {
element.masonry("reload");
});
});
});
}
});
};
}
};
})
.controller('MainCtrl', function($scope, $http) {
$scope.items =
[{pregunta: "Realizó CEDHV Conversatorio \u0022Gráficas en la defensa\u0022",
imagen: "12025-04-30-15-05-20.jpg",
folio: 110646,
fecha: "30\u002F04\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 4,
anio: 2025},
{pregunta: "Participa funcionariado CEDHV en Día Naranja",
imagen: "1 A2025-04-25-14-50-19.jpg",
folio: 110641,
fecha: "25\u002F04\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 4,
anio: 2025},
{pregunta: "Reciben jornada de capacitación visitadores de la CEDHV",
imagen: "12025-04-24-16-35-55.jpg",
folio: 110636,
fecha: "24\u002F04\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 4,
anio: 2025},
{pregunta: "Signa CEDH Veracruz y Ayuntamiento de Naolinco convenio de colaboración",
imagen: "1 A2025-04-21-16-19-56.jpg",
folio: 110631,
fecha: "21\u002F04\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 4,
anio: 2025},
{pregunta: "Visitó personal CEDHV Cereso de Zongolica",
imagen: "12025-04-15-15-58-04.jpg",
folio: 110626,
fecha: "15\u002F04\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 4,
anio: 2025},
{pregunta: "Atendió personal NNA Centro de Asistencia Social",
imagen: "12025-04-14-15-39-53.jpg",
folio: 110621,
fecha: "14\u002F04\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 4,
anio: 2025},
{pregunta: "Participa personal CEDHV en taller sobre Discapacidad",
imagen: "42025-04-14-09-21-37.jpg",
folio: 110616,
fecha: "11\u002F04\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 4,
anio: 2025},
{pregunta: "Asistió delegación CEDHV a Centro para NNA en situación de migración",
imagen: "22025-04-10-09-48-49.jpg",
folio: 110611,
fecha: "09\u002F04\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 4,
anio: 2025},
{pregunta: "Atendió módulo CEDHV en Platón Sánchez",
imagen: "2 A2025-04-08-10-42-24.jpg",
folio: 110606,
fecha: "07\u002F04\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 4,
anio: 2025},
{pregunta: "Recibe personal CEDHV curso sobre \u0022Violencia Sexual\u0022",
imagen: "22025-04-04-10-23-25.jpg",
folio: 110601,
fecha: "03\u002F04\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 4,
anio: 2025},
{pregunta: "Conmemora CEDHV Día Internacional de la Visibilidad Trans",
imagen: "22025-03-31-13-32-44.jpg",
folio: 110596,
fecha: "31\u002F03\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 3,
anio: 2025},
{pregunta: "Visitó CEDHV Centro de Asistencia Social",
imagen: "12025-03-28-16-33-08.jpg",
folio: 110591,
fecha: "28\u002F03\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 3,
anio: 2025},
{pregunta: "Firma CEDHV convenios de colaboración con Ayuntamientos",
imagen: "1 A2025-03-26-11-18-34.jpg",
folio: 110586,
fecha: "25\u002F03\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 3,
anio: 2025},
{pregunta: "Se suma personal CEDHV a Día Naranja",
imagen: "12025-03-26-11-13-56.jpg",
folio: 110581,
fecha: "25\u002F03\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 3,
anio: 2025},
{pregunta: "Otorga funcionariado CNDH curso sobre Violencia Feminicida",
imagen: "22025-03-26-11-09-37.jpg",
folio: 110576,
fecha: "24\u002F03\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 3,
anio: 2025},
{pregunta: "Asisten autoridades CEDHV a Diálogos con la Defensoría Pública",
imagen: "12025-03-26-10-56-38.jpg",
folio: 110571,
fecha: "21\u002F03\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 3,
anio: 2025},
{pregunta: "Sesionó Consejo Consultivo de Gobierno Abierto",
imagen: "12025-03-21-09-31-25.jpg",
folio: 110564,
fecha: "20\u002F03\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 3,
anio: 2025},
{pregunta: "Recibe CEDHV Certificación en Mejora Regulatoria",
imagen: "1 A2025-03-20-09-28-35.jpg",
folio: 110559,
fecha: "19\u002F03\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 3,
anio: 2025},
{pregunta: "Recibe personal CEDHV capacitación en \u0022Derechos de NNA\u0022",
imagen: "3 A2025-03-13-17-11-10.jpg",
folio: 110554,
fecha: "13\u002F03\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 3,
anio: 2025},
{pregunta: "Asistió delegación CEDHV a mesa de trabajo interinstitucional",
imagen: "12025-03-13-09-23-15.jpg",
folio: 110549,
fecha: "12\u002F03\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 3,
anio: 2025},
{pregunta: "Acudió CEDHV a Centro de Asistencia Social",
imagen: "12025-03-11-17-12-19.jpg",
folio: 110545,
fecha: "11\u002F03\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 3,
anio: 2025},
{pregunta: "En el marco del 8M se presentó \u0022Digna Rabia\u0022",
imagen: "12025-03-10-16-57-00.jpg",
folio: 110537,
fecha: "10\u002F03\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 3,
anio: 2025},
{pregunta: "Conmemora CEDHV Día Internacional de la Mujer",
imagen: "12025-03-07-17-42-43.jpg",
folio: 110532,
fecha: "07\u002F03\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 3,
anio: 2025},
{pregunta: "Impartió delegación CEDHV jornada de capacitación en Minatitlán",
imagen: "12025-03-07-13-38-47.jpg",
folio: 110527,
fecha: "07\u002F03\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 3,
anio: 2025},
{pregunta: "Participó delegación CEDHV en \u0022Jornadas por la Paz\u0022",
imagen: "12025-03-06-16-19-55.jpg",
folio: 110522,
fecha: "06\u002F03\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 3,
anio: 2025},
{pregunta: "Elabora CEDHV bordados por el 8M",
imagen: "12025-03-06-09-27-04.jpg",
folio: 110517,
fecha: "05\u002F03\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 3,
anio: 2025},
{pregunta: "Visitó delegación CEDHV albergue Casa del Migrante",
imagen: "12025-03-03-12-00-25.jpg",
folio: 110512,
fecha: "28\u002F02\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 2,
anio: 2025},
{pregunta: "Funcionariado CEDHV se suma a Día Naranja",
imagen: "12025-03-03-11-47-15.jpg",
folio: 110507,
fecha: "25\u002F02\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 2,
anio: 2025},
{pregunta: "Asistió delegación CEDHV a Aniversario de Las Patronas",
imagen: "12025-03-03-11-32-03.jpg",
folio: 110500,
fecha: "21\u002F02\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 2,
anio: 2025},
{pregunta: "Impulsa delegación CEDHV actividades de difusión",
imagen: "12025-02-21-10-55-23.jpg",
folio: 110495,
fecha: "20\u002F02\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 2,
anio: 2025},
{pregunta: "Reciben jornada de capacitación policías de Tezonapa",
imagen: "1 A2025-02-20-10-14-03.jpg",
folio: 110490,
fecha: "19\u002F02\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 2,
anio: 2025},
{pregunta: "Acudió módulo CEDHV a Tempoal",
imagen: "12025-02-19-09-59-53.jpg",
folio: 110485,
fecha: "18\u002F02\u002F2025",
programa: "INTERES_GENERAL",
area: "CS",
mes: 2,
anio: 2025}];
});
angular.bootstrap(document.body, ['app']);
}