Skip to content

Commit

Permalink
minnor changes v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
petrenkodesign committed Nov 27, 2023
1 parent 3e7b94e commit 431acf3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<div id="qr">
<h2 class="text-center mb-2">Donate coins</h2>
<div class="border border-dark rounded-3 p-2">
<img class="w-100 h-auto" src="https://chart.googleapis.com/chart?cht=qr&chl=https://linktr.ee/petrolex&chs=300x300&choe=UTF-8&chld=L|2">
<img class="w-100 h-auto" style="max-width: 300px;" src="https://chart.googleapis.com/chart?cht=qr&chl=https://linktr.ee/petrolex&chs=300x300&choe=UTF-8&chld=L|2">
</div>
<p class="text-center text-secondary p-2"></p>
</div>
Expand Down Expand Up @@ -48,7 +48,7 @@ <h2 class="text-center mb-2">Donate coins</h2>
var get = getQ();
if(!get.addr) return get;
var coin = (get.type) ? get.type+':'+get.addr : get.addr;
return (get.value) ? coin+'?='+get.value : coin;
return (get.amount) ? coin+'?='+get.amount : coin;
}
</script>
</html>

0 comments on commit 431acf3

Please sign in to comment.