aboutsummaryrefslogtreecommitdiffstats
path: root/javadoc/script.js
diff options
context:
space:
mode:
authorClyhtsuriva <aimeric@adjutor.xyz>2020-12-28 16:09:37 +0100
committerClyhtsuriva <aimeric@adjutor.xyz>2020-12-28 16:09:37 +0100
commitde39259ada4f75ac987f9bd8f0674ebede75a0de (patch)
treee9987d753d0183880117bd89135adaf7ac3b135b /javadoc/script.js
parente28cfe68365eecd5c4f1d9bfd92c225ccd1a4697 (diff)
downloadjMusicHub-de39259ada4f75ac987f9bd8f0674ebede75a0de.tar.gz
jMusicHub-de39259ada4f75ac987f9bd8f0674ebede75a0de.tar.bz2
jMusicHub-de39259ada4f75ac987f9bd8f0674ebede75a0de.zip
Starting javadoc
Diffstat (limited to '')
-rw-r--r--javadoc/script.js30
1 files changed, 30 insertions, 0 deletions
diff --git a/javadoc/script.js b/javadoc/script.js
new file mode 100644
index 0000000..b346356
--- /dev/null
+++ b/javadoc/script.js
@@ -0,0 +1,30 @@
+function show(type)
+{
+ count = 0;
+ for (var key in methods) {
+ var row = document.getElementById(key);
+ if ((methods[key] & type) != 0) {
+ row.style.display = '';
+ row.className = (count++ % 2) ? rowColor : altColor;
+ }
+ else
+ row.style.display = 'none';
+ }
+ updateTabs(type);
+}
+
+function updateTabs(type)
+{
+ for (var value in tabs) {
+ var sNode = document.getElementById(tabs[value][0]);
+ var spanNode = sNode.firstChild;
+ if (value == type) {
+ sNode.className = activeTableTab;
+ spanNode.innerHTML = tabs[value][1];
+ }
+ else {
+ sNode.className = tableTab;
+ spanNode.innerHTML = "<a href=\"javascript:show("+ value + ");\">" + tabs[value][1] + "</a>";
+ }
+ }
+}
w.yml?id=3c8fc46dedb3d4df45d6f26b6f81dbbdb4b22046&follow=1'>ansible: set apt lock_timeout to 3minclyhtsuriva3-2/+4 2025-06-22tofu: update bpg/proxmox to 0.78.2clyhtsuriva1-1/+1 2025-05-24tofu: update bpg/proxmox to 0.78.0 (tested)clyhtsuriva2-2/+3 2025-05-01tofu: update bpg/proxmox to 0.77.0 (tested)clyhtsuriva1-1/+1 2025-04-22tofu: update bpg/proxmox to 0.76.0 (tested)clyhtsuriva1-1/+1 2025-04-15tofu: update bpg/proxmox to 0.75.0 (tested)clyhtsuriva1-1/+1 2025-04-04ansible: remove docker git repo cloning taskclyhtsuriva2-46/+0 2025-04-04ansible: deploy gitea using ansible (w.i.p.)clyhtsuriva4-0/+58