-
Notifications
You must be signed in to change notification settings - Fork 1
/
script.js
110 lines (85 loc) · 2.21 KB
/
script.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
$(document).ready(function(){
var $window = $(window);
function checkWidth() {
var windowsize = $window.width();
if (windowsize < 736) {
//if the window is greater than 440px wide then turn on jScrollPane..
$(".menuPop").css("width", "100%");
$(".menubar").click(function(){
$(".menuPop").animate({
"left":"0%"
})
$(".menubar").hide(300);
});
$(".menux").click(function(){
$(".menuPop").animate({
"left":"-100%"
});
// $("#container").toggleClass("menuopen");
$(".menubar").show(300);
});
}
else{
$(".menubar").click(function(){
$(".menuPop").animate({
"left":"0%"
})
$(".menubar").hide(300);
});
$(".menux").click(function(){
$(".menuPop").animate({
"left":"-100%"
});
// $("#container").toggleClass("menuopen");
$(".menubar").show(300);
});
}
}
// Execute on load
checkWidth();
// Bind event listener
$(window).resize(checkWidth);
$(".ok").click(function(){
$(".popUps").hide();
});
$(".menuPop").height($(window).height())
$(window).resize(function(){
$(".menuPop").height($(window).height())
});
$("body").height($(window).height())
$(window).resize(function(){
$("body").height($(window).height())
});
$(".titlePencil").click(function(){
$("#titleEditDiv").slideToggle(200);
$(".mainListTitle").toggle(200);
});
$(".add_item").click(function(){
$("#add").slideToggle(500);
});
$(".fa-pencil").click(function(e){
e.preventDefault();
$(this).parents("li").find(".editToggle").slideToggle(500);
$(this).parents("li").find(".nonedit").toggle();
});
$(".add_item").click(function(){
$(".item_form").slideToggle(500);
});
$(".add_list").click(function(){
$(".list_form").slideToggle(500);
});
$(".user_pic").click(function(e){
e.preventDefault();
$(".user_info").toggle(300);
$(".list_info").toggle(300);
});
// $(".ok").click(function(){
// $(".search_result").hide();
// });
$(".fa-angle-down").click(function(){
$(this).parents(".atagDrop").find(".atags").slideToggle(500);
});
// setTimeout(function(){
// $("ul").load("edit.php?item_id=20&list_id=1")
// },3000)
});