..
Viewing
script.js
134 lines (107 loc) • 3.3 KB
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 | jQuery.noConflict();
// Use jQuery via jQuery() instead of via $()
jQuery(document).ready(function(){
jQuery("#uname").click(function(){
jQuery("#options").slideToggle();
jQuery("#userdown").toggleClass("rotate");
});
});
jQuery(document).ready(function(){
jQuery("#transbutton").click(function(){
jQuery("#transaction").slideToggle();
jQuery("#tansdown").toggleClass("rotate");
});
});
jQuery(document).ready(function(){
jQuery("#accbutton").click(function(){
jQuery("#accounting").slideToggle();
jQuery("#accdown").toggleClass("rotate");
});
});
jQuery(document).ready(function() {
jQuery("#fullMenu").click(function() {
jQuery('#menuFull').slideToggle();
jQuery('#menuFull').toggleClass("display");
});
});
jQuery(document).ready(function(){
jQuery("#collapseMSR").click(function(){
jQuery("#monthlyChart").slideToggle();
});
});
jQuery(document).ready(function(){
jQuery("#closeMSR").click(function(){
jQuery("#monthlyReport").hide();
});
});
jQuery(document).ready(function(){
jQuery("#collapsePSR").click(function(){
jQuery("#packageChart").slideToggle();
});
});
jQuery(document).ready(function(){
jQuery("#closePSR").click(function(){
jQuery("#packageSalesReport").hide();
});
});
jQuery(document).ready(function(){
jQuery("#collapseFR").click(function(){
jQuery("#financialChart").slideToggle();
});
});
jQuery(document).ready(function(){
jQuery("#closeFR").click(function(){
jQuery("#financialReport").hide();
});
});
jQuery(document).ready(function(){
jQuery('.seeCheck').click(function(){
jQuery("#del").toggle();
jQuery("#mod").toggle();
});
});
jQuery(document).ready(function(){
jQuery("#collapseTDL").click(function(){
jQuery(".options").slideToggle();
jQuery(".tasks").slideToggle();
});
});
jQuery(document).ready(function(){
jQuery("#closeTDL").click(function(){
jQuery("#toDoList").hide();
});
});
jQuery(document).ready(function () {
jQuery(".chat").hide();
jQuery('#showChat').click(function () {
jQuery("#dash").toggleClass("col-md-10");
jQuery("#dash").toggleClass("col-md-7");
jQuery("#showChat").toggleClass("active");
jQuery(".chat").toggle("slide", { direction: "right" });
});
jQuery('#openChat').click(function () {
jQuery(".chat").toggle("slide", { direction: "right" });
});
});
jQuery(document).ready(function () {
jQuery('#closeChat').click(function () {
jQuery("#dash").toggleClass("col-md-10");
jQuery("#dash").toggleClass("col-md-7");
jQuery("#showChat").toggleClass("active");
jQuery(".chat").toggle("slide", { direction: "right" });
});
});
jQuery(document).ready(function () {
jQuery(".message-block").hide();
jQuery('.chat-members').click(function () {
jQuery(".chats").hide();
jQuery(".message-block").toggle("slide", { direction: "right" });
});
});
jQuery(document).ready(function () {
jQuery('.mb-back').click(function () {
jQuery(".message-block").toggle("slide", { direction: "right" });
jQuery(".chats").show();
jQuery("..message-block").hide();
});
});
|
|