%PDF- %PDF-
| Direktori : /home/br2t/public_html/intranett/host[24.0]/admin/js/ |
| Current File : /home/br2t/public_html/intranett/host[24.0]/admin/js/custom.js |
$(function () {
"use strict";
// $(".preloader").fadeOut(5000);
$(".preloader").hide();
// this is for close icon when navigation open in mobile view
$(".nav-toggler").on("click", function () {
$("#main-wrapper").toggleClass("show-sidebar");
$(".nav-toggler i").toggleClass("ti-menu");
});
$(".search-box a, .search-box .app-search .srh-btn").on("click", function () {
$(".app-search").toggle(200);
$(".app-search input").focus();
});
// ==============================================================
// Resize all elements
// ==============================================================
$("body, .page-wrapper").trigger("resize");
$(".page-wrapper").delay(20).show();
//****************************
/* This is for the mini-sidebar if width is less then 1170*/
//****************************
var setsidebartype = function () {
var width = window.innerWidth > 0 ? window.innerWidth : this.screen.width;
if (width < 1170) {
$("#main-wrapper").attr("data-sidebartype", "mini-sidebar");
} else {
$("#main-wrapper").attr("data-sidebartype", "full");
}
};
$(window).ready(setsidebartype);
$(window).on("resize", setsidebartype);
});