Skip to content

Commit

Permalink
Maaikevanleuken patch 7 (#20)
Browse files Browse the repository at this point in the history
* Update script.js fixing names

Signed-off-by: Maaike van Leuken <[email protected]>

* Update index.html

Signed-off-by: Maaike van Leuken <[email protected]>

---------

Signed-off-by: Maaike van Leuken <[email protected]>
  • Loading branch information
maaikevanleuken authored Jan 25, 2024
1 parent 72cb903 commit 677792f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ <h1>Wallet Overview</h1>
<thead>
<tr id="top-headers">

<th style="background-color: #547a95; color: white;" colspan="9" scope="colgroup">General</th>
<th style="background-color: #547a95; color: white;" colspan="13" scope="colgroup">General</th>
<th style="background-color: #547a95; color: white;" colspan="11" scope="colgroup">Technology Stack</th>
<th style="background-color: #547a95; color: white;" colspan="6" scope="colgroup">User-Friendliness</th>
<th style="background-color: #547a95; color: white;" colspan="4" scope="colgroup">Privacy</th>
Expand Down Expand Up @@ -91,7 +91,7 @@ <h1>Wallet Overview</h1>
</i>
</th>

<th scope="col">Organizational Wallet
<th scope="col">Organisational Wallet
<button class="btn" onclick="sortTable(5)">
<i class="fa-solid fa-sort"></i>
</button>
Expand All @@ -107,7 +107,7 @@ <h1>Wallet Overview</h1>
<span class="tooltiptext">Whether the wallet is open source and if so, the link to their code base.</span>
</i>
</th>
<th scope="col">Download
<th scope="col">Links to app
<button class="btn" onclick="sortTable(7)">
<i class="fa-solid fa-sort"></i>
</button>
Expand Down
14 changes: 7 additions & 7 deletions script.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ fetch("flattened_wallets.json")
<td>${wallet.verifierCapability}</td>
<td class="td-wrap">${wallet.scope}</td>
<td>${wallet.deployment}</td>
<td>${wallet.organizationalWallet}</td>
<td class="td-wrap">${wallet.openSource == 'Yes' ? '<a href="'+wallet.download.source+'">'+wallet.openSource+'</a>' : wallet.openSource}</td>
<td>${wallet.organisationalWallet}</td>
<td class="td-wrap">${wallet.openSource == 'Yes' ? '<a href="'+wallet.downloadSource+'">'+wallet.openSource+'</a>' : wallet.openSource}</td>
<td>${wallet.urlGooglePlayStore == '-' ? '-': '<a href="'+wallet.urlGooglePlayStore+'"><i class="fa-brands fa-google-play"></i></a>'}
${wallet.urlAppStore == '-' ? '-': '<a href="'+wallet.urlAppStore+'"><i class="fa-brands fa-app-store"></i></a>'}
${wallet.urlWebApp == '-' ? '-': '<a href="'+wallet.urlWebApp+'"><i class="fa-brands fa-firefox"></i></a>'}</td>
Expand All @@ -30,7 +30,7 @@ fetch("flattened_wallets.json")
<td>${wallet.identifierHolder}</td>
<td>${wallet.identifierIssuer}</td>
<td class="td-wrap">${wallet.revocationAlgorithm}</td>
<td class="td-wrap">${wallet.peer2peerProtocols}</td>
<td class="td-wrap">${wallet.peer2PeerProtocols}</td>
<td class="td-wrap">${wallet.credExchangeProtocol}</td>
<td>${wallet.blockchainUsed}</td>
<td class="td-wrap">${wallet.blockchainType}</td>
Expand All @@ -54,10 +54,10 @@ fetch("flattened_wallets.json")
<td>${wallet.keyRotationIssuer}</td>
<td>${wallet.eassi}</td>
<td>${wallet.EBSI}</td>
<td>${wallet.AIP}</td>
<td>${wallet.DDIP}</td>
<td>${wallet.MDOC}</td>
<td>${wallet.ebsi}</td>
<td>${wallet.aip}</td>
<td>${wallet.ddip}</td>
<td>${wallet.mdoc}</td>
</tr>
`;
Expand Down

0 comments on commit 677792f

Please sign in to comment.