-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.js
77 lines (67 loc) · 1.72 KB
/
menu.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
"use strict";
let Menus = {}
$(document).ready(function(){
Menus['dock-watch'] = new_dock_watch
Menus['dock-cpu'] = new_dock_cpu
Menus["dock-memory"] = new_dock_memory
Menus["dock-disam"] = new_dock_disam
Menus["dock-breakpoint"] = new_dock_breakpoints
Menus["dock-files"] = new_dock_files
Menus["dock-vram"] = new_dock_vram
Menus["dock-vera"] = new_dock_vera
Menus["dock-tiles"] = new_dock_tiles
$("nav div").click(function(){
$("ul").slideToggle();
$("ul ul").css("display", "none");
});
// $("ul li").click(function(){
// $("ul ul").slideUp();
// $(this).find('ul').slideToggle();
// });
$('nav ul li').click(function () {
$(this).siblings().find('ul').slideUp();
$(this).find('ul').slideToggle();
});
$(window).resize(function(){
if($(window).width() > 768){
$("ul").removeAttr('style');
}
});
$('nav ul li a').click(function () {
let id = this.id.substring(1)
if (dock_exists(id)) {
// close the dock
dock_delete(id)
let html = this.innerHTML
html = html.replace("\u2611", "\u2610")
this.innerHTML = html
}
else if (Menus[id] == undefined) {
return
}
else {
// create a new dock
Menus[id]()
// check the menu
let html = this.innerHTML
html = html.replace("\u2610", "\u2611")
this.innerHTML = html
}
});
});
/**
* Remove the checkmark next to a title
* @param {*} title
*/
function menu_uncheck(id)
{
let menuId = "m"+id
if (Menus[menuId] != undefined) {
let node = $('#' + menuId)
if (node.length > 0) {
let html = node.html()
html = html.replace("\u2611", "\u2610")
node.html(html)
}
}
}