taildeck-plugin/main_view.html

25 lines
805 B
HTML
Raw Normal View History

<html>
<head>
<link rel="stylesheet" href="/steam_resource/css/2.css">
<link rel="stylesheet" href="/steam_resource/css/39.css">
<link rel="stylesheet" href="/steam_resource/css/library.css">
<script src="/static/library.js"></script>
<script>
function getUID() {
return call_plugin_method("whoami", {});
}
function onReady() {
let heading = document.getElementById("heading");
let id = getUID();
heading.innerText = `Hello ${id}`;
}
</script>
</head>
<body reload="onReady()">
<h2 id="heading">Hello World</h2>
<div class="gamepaddialog_GamepadDialogContent_InnerWidth_2ywyS DialogContent_InnerWidth Panel Focusable">
</body>
</html>