Skip to content

Commit

Permalink
deploy: 5fd226b
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieuboudreau committed Feb 7, 2024
1 parent 59936a1 commit 06a1cb0
Show file tree
Hide file tree
Showing 115 changed files with 32,653 additions and 1,218 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: 10a644ee33defc3b4361b48f8c17c613
tags: 33eac41acc08762151beb8f3b7b86c8f
169 changes: 0 additions & 169 deletions .gitignore

This file was deleted.

Empty file added .nojekyll
Empty file.
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

31 changes: 0 additions & 31 deletions README.md

This file was deleted.

Binary file added _images/featured.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 06a1cb0

Please sign in to comment.