site-manual-notifier/content/control.md

23 lines
626 B
Markdown
Raw Normal View History

2020-07-03 06:20:15 +00:00
---
title: Control Panel
2020-07-03 06:49:20 +00:00
description: This is a page that controls which texts will scroll
---
<script>
function addJS(name) {
2020-07-03 07:24:20 +00:00
var node=document.createElement('script');
node.setAttribute('type','text/javascript');
node.setAttribute('src', name);
document.head.appendChild(node);
2020-07-03 06:49:20 +00:00
}
function addCSS(name) {
2020-07-03 07:24:20 +00:00
var node=document.createElement('link');
node.setAttribute('rel', 'stylesheet');
node.setAttribute('type', 'text/css');
node.setAttribute('href', name);
document.head.appendChild(node);
2020-07-03 06:49:20 +00:00
}
addCSS('/css/control.css');
2020-07-03 07:24:20 +00:00
addJS('/js/sharedWebSocket.js');
2020-07-03 06:49:20 +00:00
addJS('/js/control.js');
</script>