forked from mahdahar/crm-summit
118 lines
4.8 KiB
JavaScript
118 lines
4.8 KiB
JavaScript
$(function () {
|
|
"use strict";
|
|
$(function () {
|
|
$(".preloader").fadeOut();
|
|
});
|
|
jQuery(document).on('click', '.mega-dropdown', function (e) {
|
|
e.stopPropagation()
|
|
});
|
|
// ==============================================================
|
|
// This is for the top header part and sidebar part
|
|
// ==============================================================
|
|
var set = function () {
|
|
var width = (window.innerWidth > 0) ? window.innerWidth : this.screen.width;
|
|
var topOffset = 55;
|
|
if (width < 1170) {
|
|
$("body").addClass("mini-sidebar");
|
|
$('.navbar-brand span').hide();
|
|
$(".sidebartoggler i").addClass("ti-menu");
|
|
}
|
|
else {
|
|
$("body").removeClass("mini-sidebar");
|
|
$('.navbar-brand span').show();
|
|
}
|
|
var height = ((window.innerHeight > 0) ? window.innerHeight : this.screen.height) - 1;
|
|
height = height - topOffset;
|
|
if (height < 1) height = 1;
|
|
if (height > topOffset) {
|
|
$(".page-wrapper").css("min-height", (height) + "px");
|
|
}
|
|
};
|
|
$(window).ready(set);
|
|
$(window).on("resize", set);
|
|
// ==============================================================
|
|
// Theme options
|
|
// ==============================================================
|
|
$(".sidebartoggler").on('click', function () {
|
|
if ($("body").hasClass("mini-sidebar")) {
|
|
$("body").trigger("resize");
|
|
$("body").removeClass("mini-sidebar");
|
|
$('.navbar-brand span').show();
|
|
}
|
|
else {
|
|
$("body").trigger("resize");
|
|
$("body").addClass("mini-sidebar");
|
|
$('.navbar-brand span').hide();
|
|
}
|
|
});
|
|
// this is for close icon when navigation open in mobile view
|
|
$(".nav-toggler").click(function () {
|
|
$("body").toggleClass("show-sidebar");
|
|
$(".nav-toggler i").toggleClass("ti-menu");
|
|
$(".nav-toggler i").addClass("ti-close");
|
|
});
|
|
$(".search-box a, .search-box .app-search .srh-btn").on('click', function () {
|
|
$(".app-search").toggle(200);
|
|
});
|
|
// ==============================================================
|
|
// This is for the floating labels
|
|
// ==============================================================
|
|
$('.floating-labels .form-control').on('focus blur', function (e) {
|
|
$(this).parents('.form-group').toggleClass('focused', (e.type === 'focus' || this.value.length > 0));
|
|
}).trigger('blur');
|
|
|
|
// ==============================================================
|
|
//tooltip
|
|
// ==============================================================
|
|
$(function () {
|
|
$('[data-toggle="tooltip"]').tooltip()
|
|
})
|
|
// ==============================================================
|
|
//Popover
|
|
// ==============================================================
|
|
$(function () {
|
|
$('[data-toggle="popover"]').popover()
|
|
})
|
|
|
|
// ==============================================================
|
|
// Perfact scrollbar
|
|
// ==============================================================
|
|
$('.scroll-sidebar, .right-side-panel, .message-center, .right-sidebar').perfectScrollbar();
|
|
$('#chat, #msg, #comment, #todo').perfectScrollbar();
|
|
// ==============================================================
|
|
// Resize all elements
|
|
// ==============================================================
|
|
$("body").trigger("resize");
|
|
// ==============================================================
|
|
// To do list
|
|
// ==============================================================
|
|
$(".list-task li label").click(function () {
|
|
$(this).toggleClass("task-done");
|
|
});
|
|
// ==============================================================
|
|
// Collapsable cards
|
|
// ==============================================================
|
|
$('a[data-action="collapse"]').on('click', function (e) {
|
|
e.preventDefault();
|
|
$(this).closest('.card').find('[data-action="collapse"] i').toggleClass('ti-minus ti-plus');
|
|
$(this).closest('.card').children('.card-body').collapse('toggle');
|
|
});
|
|
// Toggle fullscreen
|
|
$('a[data-action="expand"]').on('click', function (e) {
|
|
e.preventDefault();
|
|
$(this).closest('.card').find('[data-action="expand"] i').toggleClass('mdi-arrow-expand mdi-arrow-compress');
|
|
$(this).closest('.card').toggleClass('card-fullscreen');
|
|
});
|
|
// Close Card
|
|
$('a[data-action="close"]').on('click', function () {
|
|
$(this).closest('.card').removeClass().slideUp('fast');
|
|
});
|
|
// For Custom File Input
|
|
$('.custom-file-input').on('change',function(){
|
|
//get the file name
|
|
var fileName = $(this).val();
|
|
//replace the "Choose a file" label
|
|
$(this).next('.custom-file-label').html(fileName);
|
|
})
|
|
});
|