| 1 |
import { getById } from '/common.module.js'; |
| 2 |
import {QRCode} from '/qrcode.js'; |
| 3 |
|
| 4 |
export function onLoad() { |
| 5 |
var qrcode = new QRCode("qrcode", |
| 6 |
"https://bes.is/"); |
| 7 |
|
| 8 |
const input = getById("input"); |
| 9 |
input.oninput = () => { |
| 10 |
const value = input.value; |
| 11 |
qrcode.makeCode(value); |
| 12 |
} |
| 13 |
} |