-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.js
212 lines (189 loc) · 7.47 KB
/
custom.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
/*
Template Name: Admin Press Admin
Author: Themedesigner
Email: [email protected]
File: js
*/
$(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 = 70;
if (width < 1170) {
$("body").addClass("mini-sidebar");
$('.navbar-brand span').hide();
$(".scroll-sidebar, .slimScrollDiv").css("overflow-x", "visible").parent().css("overflow", "visible");
$(".sidebartoggler i").addClass("ti-menu");
}
else {
$("body").removeClass("mini-sidebar");
$('.navbar-brand span').show();
//$(".sidebartoggler i").removeClass("ti-menu");
}
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");
$(".scroll-sidebar, .slimScrollDiv").css("overflow", "hidden").parent().css("overflow", "visible");
$("body").removeClass("mini-sidebar");
$('.navbar-brand span').show();
//$(".sidebartoggler i").addClass("ti-menu");
}
else {
$("body").trigger("resize");
$(".scroll-sidebar, .slimScrollDiv").css("overflow-x", "visible").parent().css("overflow", "visible");
$("body").addClass("mini-sidebar");
$('.navbar-brand span').hide();
//$(".sidebartoggler i").removeClass("ti-menu");
}
});
// topbar stickey on scroll
$(".fix-header .topbar").stick_in_parent({});
// this is for close icon when navigation open in mobile view
$(".nav-toggler").click(function () {
$("body").toggleClass("show-sidebar");
$(".nav-toggler i").toggleClass("mdi mdi-menu");
$(".nav-toggler i").addClass("mdi mdi-close");
});
$(".search-box a, .search-box .app-search .srh-btn").on('click', function () {
$(".app-search").toggle(200);
});
// ==============================================================
// Right sidebar options
// ==============================================================
$(".right-side-toggle").click(function () {
$(".right-sidebar").slideDown(50);
$(".right-sidebar").toggleClass("shw-rside");
});
$('.floating-labels .form-control').on('focus blur', function (e) {
$(this).parents('.form-group').toggleClass('focused', (e.type === 'focus' || this.value.length > 0));
}).trigger('blur');
// ==============================================================
// Auto select left navbar
// ==============================================================
$(function () {
var url = window.location;
var element = $('ul#sidebarnav a').filter(function () {
return this.href == url;
}).addClass('active').parent().addClass('active');
while (true) {
if (element.is('li')) {
element = element.parent().addClass('in').parent().addClass('active');
}
else {
break;
}
}
});
// ==============================================================
//tooltip
// ==============================================================
$(function () {
$('[data-toggle="tooltip"]').tooltip()
})
// ==============================================================
//Popover
// ==============================================================
$(function () {
$('[data-toggle="popover"]').popover()
})
// ==============================================================
// Sidebarmenu
// ==============================================================
$(function () {
$('#sidebarnav').metisMenu();
});
// ==============================================================
// Slimscrollbars
// ==============================================================
$('.scroll-sidebar').slimScroll({
position: 'left'
, size: "5px"
, height: '100%'
, color: '#dcdcdc'
});
$('.message-center').slimScroll({
position: 'right'
, size: "5px"
, color: '#dcdcdc'
});
$('.aboutscroll').slimScroll({
position: 'right'
, size: "5px"
, height: '80'
, color: '#dcdcdc'
});
$('.message-scroll').slimScroll({
position: 'right'
, size: "5px"
, height: '570'
, color: '#dcdcdc'
});
$('.chat-box').slimScroll({
position: 'right'
, size: "5px"
, height: '470'
, color: '#dcdcdc'
});
$('.slimscrollright').slimScroll({
height: '100%'
, position: 'right'
, size: "5px"
, color: '#dcdcdc'
});
// ==============================================================
// Resize all elements
// ==============================================================
$("body").trigger("resize");
// ==============================================================
// To do list
// ==============================================================
$(".list-task li label").click(function () {
$(this).toggleClass("task-done");
});
// ==============================================================
// Login and Recover Password
// ==============================================================
$('#to-recover').on("click", function () {
$("#loginform").slideUp();
$("#recoverform").fadeIn();
});
// ==============================================================
// 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');
});
});