Massive structure rewrite
This commit is contained in:
@@ -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 %}
|
||||
Reference in New Issue
Block a user