32 lines
926 B
HTML
32 lines
926 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Focus Link | Stand</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/uikit@3.5.7/dist/css/uikit.min.css" crossorigin="anonymous" />
|
|
</head>
|
|
<body style="height:100vh;background-color:#111">
|
|
<div class="uk-position-center">
|
|
<div class="uk-card uk-card-primary">
|
|
<div class="uk-card-body uk-text-center">
|
|
<h3>Focus Link</h3>
|
|
<p>The following command path has been shared:</p>
|
|
<pre></pre>
|
|
<button onclick="beamItUp();" class="uk-button uk-button-default">Focus In Stand</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="/common.js"></script>
|
|
<script>
|
|
let hash = decodeURIComponent(location.hash.toString().replace("#", ""));
|
|
|
|
document.querySelector("pre").textContent = hash;
|
|
|
|
function beamItUp()
|
|
{
|
|
copy_to_clipboard("Stand-Focus-"+hash);
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|