trace, console

This commit is contained in:
Face
2025-09-01 17:08:47 +03:00
parent f973bb55f6
commit a6e96328ae
34 changed files with 1353 additions and 65 deletions

View File

@@ -17,12 +17,12 @@
<postprocess preset="chrome" />
<script>
gurt.log('Script started!')
trace.log('Script started!')
local copyBtn = gurt.select('#copy-text-btn')
copyBtn:on('click', function()
gurt.log('Copy button clicked!')
trace.log('Copy button clicked!')
Clipboard.write('Hello from GURT!')
end)
</script>