$(document).foundation(); function openChart(target){ status = $(target).css('display'); trigger=this+' .bt_toggle img'; if(status=='none'){ $(target).slideDown('slow'); $(trigger).attr('src', "/tipografiapaulistana/static/img/ico_up_black.svg"); } if(status=='block'){ $(target).slideUp('slow'); $(trigger).attr('src', "/tipografiapaulistana/static/img/ico_down_black.svg"); } } $(document).ready(function() { var $root = $('html, body'); $('a').click(function() { var href = $.attr(this, 'href'); console.log(href); $root.animate({ scrollTop: $(href).offset().top - 120 }, 500, function () { window.location.hash = href; }); return false; }); //Para fechar o menu lateral se a página escrolar muito $(window).scroll(function () { altura=$(window).scrollTop(); if (altura>720) { $('.off-canvas').foundation('close'); } }); }); //PARA MOSTRAR AS EDICOES DE UMA PUBLICACAO function toggleEdicoes(alvo) { $(alvo).next().slideToggle(); controlador=$(alvo).html(); checagem=controlador.includes("+"); if (checagem==true) { novoconteudo=controlador.replace("+", "-"); }else{ novoconteudo=controlador.replace("-", "+"); } $(alvo).html(novoconteudo); }