fixed example and removed dist

Niko PLP 6 days ago
parent 86b21b2324
commit 684b652d2e
  1. BIN
      helpers/app-auth/dist/index.gzip
  2. 1
      helpers/app-auth/dist/index.sha256
  3. 112
      helpers/net-auth/dist/index.html
  4. 1
      helpers/net-auth/index.html
  5. 2
      helpers/net-auth/src/main.ts
  6. 37
      helpers/net-bootstrap/dist/index.html
  7. 2
      ng-sdk-js/example-webapp-vite/index.html
  8. 1
      ng-sdk-js/example-webapp-vite/src/main.js

Binary file not shown.

@ -1 +0,0 @@
83eda8f6f9ad5927c403f02417ef85cd2d3935fe7c5360ef4a3759d7334c55ec

File diff suppressed because one or more lines are too long

@ -55,7 +55,6 @@
</svg>
</div>
<script>
document.getElementById("banner").innerText = "Opening Wallet for "+ location.host;
document.getElementById("close-auth").onclick = (e)=> {
window.ng_status_callback.write({status:"cancelled"});
};

@ -21,7 +21,7 @@ select_default_lang(()=>{return window.navigator.languages;}).then(() => {});
const origin = decodeURIComponent(location.search.substring(3));
document.getElementById("banner").innerText = "Opening Wallet for "+ new URL(origin).host;
async function rpc( method:string, args?: any) : Promise<any> {
const { readable, writablePort } = new RemoteReadableStream();

File diff suppressed because one or more lines are too long

@ -22,6 +22,6 @@
>
<h1>Testing NextGraph Wallet and LDO in a Web App</h1>
<h2 id="result"></h2>
<script type="module" src="main.js"></script>
<script type="module" src="src/main.js"></script>
</body>
</html>

@ -19,6 +19,7 @@ init( async (event) => {
if (event.status == "cancelled") {
document.getElementById("result").innerText = "Login cancelled";
console.log("CANCELLED");
} else if (event.status == "loggedin") {

Loading…
Cancel
Save