Skip to content

Commit 44da5f3

Browse files
committed
Add Herrmann Ultraschall Sponsor & Shuffle Sponsor Order
1 parent 5850139 commit 44da5f3

File tree

9 files changed

+22
-10
lines changed

9 files changed

+22
-10
lines changed

docs/_includes/head-custom.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<script type="text/javascript" src="{{ '/assets/js/randomize-order.js?v=' | append: site.github.build_revision | relative_url }}"></script>

docs/_layouts/milestone.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<dt>Sponsors</dt>
3030
<dd>
3131
{% if page.sponsors %}
32-
<ul>
32+
<ul class="randomize-order">
3333
{% for sponsor in page.sponsors %}
3434
<li>
3535
{{ sponsor }}

docs/aegis/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ description: Supply Chain Security & Compliance Initiative
9999
</p>
100100
{% endif %}
101101
{% if milestone.sponsors %}
102-
<ul>
102+
<ul class="randomize-order">
103103
{% for sponsor in milestone.sponsors %}
104104
<li>
105105
{{ sponsor }}

docs/aegis/roadmap/cna.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ progress: 75
66
funding_required: false
77
sponsors:
88
- Ericsson
9-
# TODO: Can we disclose the other sponsor?
9+
- Herrmann Ultraschall
1010
index: 4
1111
previous:
1212
url: core-tooling-governance-audit

docs/aegis/roadmap/core-tooling-compliance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ progress: 20
66
funding_required: false
77
sponsors:
88
- Ericsson
9-
# TODO: Can we disclose the other sponsor?
9+
- Herrmann Ultraschall
1010
index: 5
1111
previous:
1212
url: gleam-openchain-compliance

docs/aegis/roadmap/core-tooling-governance-audit.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: Core Tooling Governance Audit
33
area: Governance
44
status: Planning
55
funding_required: false
6-
# TODO: Can we disclose the sponsor?
7-
# sponsors: ...
6+
sponsors:
7+
- Herrmann Ultraschall
88
index: 6
99
previous:
1010
url: core-tooling-compliance

docs/aegis/roadmap/elixir-openchain-compliance.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: Elixir OpenChain Compliance
33
area: Compliance
44
status: Done
55
funding_required: false
6-
# TODO: Can we disclose the sponsor?
7-
# sponsors: ...
6+
sponsors:
7+
- Herrmann Ultraschall
88
index: 1
99
previous:
1010
url: erlang-openchain-compliance

docs/aegis/roadmap/gleam-openchain-compliance.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ area: Compliance
44
status: In Progress
55
progress: 10
66
funding_required: false
7-
# TODO: Can we disclose the sponsor?
8-
# sponsors: ...
7+
sponsors:
8+
- Herrmann Ultraschall
99
index: 2
1010
previous:
1111
url: elixir-openchain-compliance

docs/assets/js/randomize-order.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
function initRandomizer() {
2+
[...document.getElementsByClassName('randomize-order')].forEach(randomizeContainer);
3+
}
4+
5+
function randomizeContainer(container) {
6+
for (let i = container.children.length; i >= 0; i--) {
7+
container.appendChild(container.children[Math.random() * i | 0]);
8+
}
9+
}
10+
11+
document.addEventListener("DOMContentLoaded", initRandomizer);

0 commit comments

Comments
 (0)