Massive structure rewrite

This commit is contained in:
2020-02-21 15:45:30 +01:00
parent 1c807c2af4
commit 17d14d45ae
10 changed files with 347 additions and 26 deletions

View File

@@ -3,6 +3,15 @@
{% block extend_head %}
<script src="{{ url_for('static', filename='js/socket.io.js') }}"></script>
<style>
* {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
display:before {
content: attr(title);
}
@@ -102,14 +111,15 @@
}
displayList.getElementsByTagName("list")[0].innerHTML = "";
for (item in list) {
for (const item of list) {
add(item);
}
add("+");
add("+");
add("+");
displayList.hidden = false;
}
function addItemToDisplayList(item, onclick) {
}
</script>
{% endblock %}