Browse Source

Fixed sample app

qdn-on-chain-data
CalDescent 2 years ago
parent
commit
2822d860d8
  1. 3
      Q-Apps.md

3
Q-Apps.md

@ -352,6 +352,7 @@ Here is a sample application to display the logged-in user's avatar:
<html>
<head>
<script>
async function showAvatar() {
try {
// Get QORT address of logged in account
let address = await qortalRequest({
@ -386,6 +387,8 @@ Here is a sample application to display the logged-in user's avatar:
} catch(e) {
console.log("Error: " + JSON.stringify(e));
}
}
showAvatar();
</script>
</head>
<body>

Loading…
Cancel
Save