Skip to content

Commit

Permalink
Updated releasetable
Browse files Browse the repository at this point in the history
  • Loading branch information
EMMO Developer committed Apr 7, 2024
1 parent f371686 commit 692277e
Show file tree
Hide file tree
Showing 53 changed files with 275,846 additions and 64,040 deletions.
112,705 changes: 112,705 additions & 0 deletions _sources/emmo.rst.txt

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions _sources/index.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

.. toctree::
:includehidden:
:hidden:

Reference Index <emmo>

Large diffs are not rendered by default.

27 changes: 27 additions & 0 deletions _sphinx_design_static/design-tabs.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
var sd_labels_by_text = {};

function ready() {
const li = document.getElementsByClassName("sd-tab-label");
for (const label of li) {
syncId = label.getAttribute("data-sync-id");
if (syncId) {
label.onclick = onLabelClick;
if (!sd_labels_by_text[syncId]) {
sd_labels_by_text[syncId] = [];
}
sd_labels_by_text[syncId].push(label);
}
}
}

function onLabelClick() {
// Activate other inputs with the same sync id.
syncId = this.getAttribute("data-sync-id");
for (label of sd_labels_by_text[syncId]) {
if (label === this) continue;
label.previousElementSibling.checked = true;
}
window.localStorage.setItem("sphinx-design-last-tab", syncId);
}

document.addEventListener("DOMContentLoaded", ready, false);
Loading

0 comments on commit 692277e

Please sign in to comment.