10 lines
No EOL
327 B
JavaScript
10 lines
No EOL
327 B
JavaScript
$(document).ready(function() {
|
|
var qrcode = new QRCode(document.getElementById("qrcode"), {
|
|
text: "strfry.shock.network npub123abcdefghhhhhhhhhhhhhhh",
|
|
width: 157,
|
|
height: 157,
|
|
colorDark : "#000000",
|
|
colorLight : "#ffffff",
|
|
// correctLevel : QRCode.CorrectLevel.H
|
|
});
|
|
}); |