Skip to content

Commit

Permalink
Deploy to GitHub pages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jan 27, 2024
1 parent 5d2f372 commit 9116057
Show file tree
Hide file tree
Showing 186 changed files with 45,830 additions and 1 deletion.
4 changes: 4 additions & 0 deletions 0.2.4/.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: fad2b959c8d4d8152c4c7dfbd4c5fceb
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file added 0.2.4/.doctrees/api.doctree
Binary file not shown.
Binary file added 0.2.4/.doctrees/api/compas_pythreejs.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added 0.2.4/.doctrees/environment.pickle
Binary file not shown.
Binary file added 0.2.4/.doctrees/examples.doctree
Binary file not shown.
Binary file added 0.2.4/.doctrees/index.doctree
Binary file not shown.
Binary file added 0.2.4/.doctrees/installation.doctree
Binary file not shown.
Binary file added 0.2.4/.doctrees/license.doctree
Binary file not shown.
Binary file added 0.2.4/.doctrees/tutorial.doctree
Binary file not shown.
Empty file added 0.2.4/.nojekyll
Empty file.

Large diffs are not rendered by default.

27 changes: 27 additions & 0 deletions 0.2.4/_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 9116057

Please sign in to comment.