lbry-desktop/static/index.html

25 lines
554 B
HTML
Raw Normal View History

2019-03-05 05:46:57 +01:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
2019-03-13 06:59:07 +01:00
<title>lbry.tv</title>
2019-03-05 05:46:57 +01:00
</head>
<body>
<div id="app"></div>
2019-04-04 23:05:23 +02:00
<script type="text/javascript">
// Use relative path if we are in electron
let src = 'ui.js';
const userAgent = navigator.userAgent.toLowerCase();
if (userAgent.indexOf('electron') === -1) {
src = `/${src}`;
}
const script = document.createElement('script');
script.setAttribute('src', src);
document.body.appendChild(script);
</script>
2019-03-05 05:46:57 +01:00
</body>
</html>