Skip to content

Commit

Permalink
deploy: 3116b16
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieuboudreau committed Feb 29, 2024
1 parent 3116b16 commit c45699e
Show file tree
Hide file tree
Showing 124 changed files with 32,502 additions and 2,331 deletions.
4 changes: 4 additions & 0 deletions .buildinfo
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: b838a11719a8bacdd244b454eab09080
tags: 33eac41acc08762151beb8f3b7b86c8f
48 changes: 0 additions & 48 deletions .github/workflows/main.yml

This file was deleted.

145 changes: 0 additions & 145 deletions .gitignore

This file was deleted.

File renamed without changes.
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

65 changes: 0 additions & 65 deletions README.md

This file was deleted.

File renamed without changes
Binary file added _images/index_51_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

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 c45699e

Please sign in to comment.