Files
chatwoot/public/test-components.html
Shivam Mishra db51d2d011 fix: options
2025-06-04 16:34:58 +05:30

62 lines
1.7 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Web Components Test</title>
<script>
window.__WOOT_ISOLATED_SHELL__ = true;
window.__WOOT_ACCOUNT_ID__ = 1;
window.__WOOT_API_HOST__ = 'http://localhost:3000';
window.__WOOT_ACCESS_TOKEN__ = 'token';
window.__PUBSUB_TOKEN__ = 'token';
window.__WEBSOCKET_URL__ = 'ws://localhost:3000';
window.__WOOT_CONVERSATION_ID__ = 13918;
window.__DISABLE_EDITOR__ = true;
window.__EDITOR_DISABLE_UPLOAD__ = true;
</script>
</head>
<body>
<div id="app" dir="ltr">
<div class="py-20 grid place-content-center">
<svg
width="40"
height="40"
viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg"
>
<circle
cx="20"
cy="20"
r="18"
fill="none"
stroke="#ccc"
stroke-width="4"
/>
<circle
cx="20"
cy="20"
r="18"
fill="none"
stroke="#333"
stroke-width="4"
stroke-dasharray="56.5487 56.5487"
stroke-dashoffset="0"
>
<animateTransform
attributeName="transform"
type="rotate"
from="0 20 20"
to="360 20 20"
dur="1s"
repeatCount="indefinite"
/>
</circle>
</svg>
</div>
</div>
<link rel="stylesheet" href="/packs/style.css" />
<script src="/packs/js/ui.js"></script>
</body>
</html>