Update /sites

This commit is contained in:
freearhey
2023-10-02 06:35:33 +03:00
parent ca254a6df0
commit c0cfcf7a47
543 changed files with 30781 additions and 31187 deletions

View File

@@ -115,14 +115,14 @@ function parseItems(content, date) {
let featuredItems = $('.vista-pc > .programacion-fila > .channel-programa')
.filter(function () {
return $(this).find(`.grid_fecha_hora`).text().indexOf(date.format('DD-MM')) > -1
return $(this).find('.grid_fecha_hora').text().indexOf(date.format('DD-MM')) > -1
})
.toArray()
let otherItems = $(`#owl-pc > .item-program`)
let otherItems = $('#owl-pc > .item-program')
.filter(function () {
return (
$(this)
.find(`.evento_titulo > .horario > p.fechaHora`)
.find('.evento_titulo > .horario > p.fechaHora')
.text()
.indexOf(date.format('DD/MM')) > -1
)