mirror of
https://github.com/Devolutions/IronRDP.git
synced 2025-08-04 15:18:17 +00:00
20 lines
608 B
HTML
20 lines
608 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Vite + Svelte + TS</title>
|
|
</head>
|
|
<body>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
<iron-remote-desktop isvisible="false" desktopwidth="600" desktopheight="400" />
|
|
|
|
<script>
|
|
var el = document.querySelector('iron-remote-desktop');
|
|
el.addEventListener('ready', (e) => {
|
|
console.log('WebComponent Loaded');
|
|
e.detail.irgUserInteraction.setVisibility(true);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|