/
githubmirror
/
tauri
Обзор
Документация
Войти
/
githubmirror
/
tauri
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
examples/file-associations/index.html
19 строк
486 B
Amr Bashir
chore: cleanup and simplify examples (#10743)
27 авг 2024, 01:25
Не верифицирован
27 авг 2024, 01:25
ad83d41
Код
Авторство
О чём код?
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>File Associations</title> </head> <body> <h1>File Associations</h1> <pre id="files"></pre> <script> const filesView = document.getElementById('files') filesView.textContent = window.openedFiles.join('\n') </script> </body> </html>