$(document).ready(function () { /*DEFINE O TITLE DO PÁGINA*/ //SetTitle($('span[id="page_title"]').text()); SetTitle(GetLS('title')); $('span[id="page_title"]').html(GetLS('title')); /*ACIONA O CLICK DOS ITENS DO MENU LATERAL"*/ $("*[tp='linkmenu']").click(function () { var page = $(this).attr('a-link'); SetLS('page', page); OpenPage('../' + page); }); $(".meter > span").each(function () { $(this) .data("origWidth", $(this).width()) .width(0) .animate({ width: $(this).data("origWidth") }, 1200 ); }); $('#aExit').click(function () { CleanSession(); }); setTimeout(function () { $('*[a-link="' + GetLS('page') + '"]').addClass('menu-active'); }, 500); /*MUDA EMPRESA*/ $('#cboEmpresas').change(function () { var js = JSON.parse('{"id_empresa":"' + $(this).val() + '"}'); SetSession(js) .done(function (data) { location.reload(); //console.log(data); }) .fail(function (e) { console.log(e); }); }); /*FECHA O MODAL FULL DO GRÁFICO*/ $('#closeFullChart').click(function () { CloseFullDFash(); // $('#fullChart').fadeOut('fast'); //openLeftMenu(); //ChartFull.destroy(); }); }); $(window).on('load', function () { $("#loader").fadeOut("slow"); });