| Server IP : 162.214.74.102 / Your IP : 216.73.217.80 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/public_html/lrsys_apps/dialogo/ui/theme/lrsys/js/ |
Upload File : |
// will be removed in future, use theme.js
$(document).ready(function () {
var navbar_minimalize = $('.navbar-minimalize');
$('#side-menu').metisMenu();
navbar_minimalize.click(function () {
$("body").toggleClass("mini-navbar");
SmoothlyMenu();
});
function fix_height() {
var heightWithoutNavbar = $("body > #wrapper").height() - 61;
$(".sidebard-panel").css("min-height", heightWithoutNavbar + "px");
}
fix_height();
$(window).bind("load resize click scroll", function() {
if(!$("body").hasClass('body-small')) {
fix_height();
}
});
$("[data-toggle=popover]")
.popover();
// Menu
navbar_minimalize.on('click', function() {
$('.navbar-header i').toggleClass('fa-indent');
});
});
$(function() {
$(window).bind("load resize", function() {
if ($(this).width() < 769) {
$('body').addClass('body-small')
} else {
$('body').removeClass('body-small')
}
})
});
function SmoothlyMenu() {
if (!$('body').hasClass('mini-navbar') || $('body').hasClass('body-small')) {
$('#side-menu').hide();
setTimeout(
function () {
$('#side-menu').fadeIn(500);
}, 100);
} else if ($('body').hasClass('fixed-sidebar')){
$('#side-menu').hide();
setTimeout(
function () {
$('#side-menu').fadeIn(500);
}, 300);
} else {
$('#side-menu').removeAttr('style');
}
}
var $loader = $('#preloader');
if(config_animate == "Yes"){
$(window).load(function() {
"use strict";
setTimeout(function() {
$('.loader-overlay').addClass('loaded');
$('body > section').animate({
opacity: 1
}, 400);
}, 500);
});
}
$(document).ready(function () {
$("#get_activity").click(function (e) {
var _url = $("#_url").val();
$.post(_url + 'util/activity-ajax/', {
})
.done(function (data) {
setTimeout(function () {
$("#activity_loaded").html(data);
}, 2000);
});
});
});