mirror of
https://gitea.phreedom.club/tolstoevsky/fedi.git
synced 2024-11-23 03:51:28 +00:00
test center
This commit is contained in:
parent
cb93431db2
commit
6d6b880a85
|
@ -17,12 +17,12 @@
|
||||||
<div class="qrcode" id="qrcode"></div>
|
<div class="qrcode" id="qrcode"></div>
|
||||||
|
|
||||||
<p class="hint text-center" id="clients"></p>
|
<p class="hint text-center" id="clients"></p>
|
||||||
<p class="lead" id="recommend"></p>
|
<p class="lead text-center" id="recommend"></p>
|
||||||
|
|
||||||
<ul class="lead" id="client_list"></ul>
|
<p class="lead text-center" id="client_list"></p>
|
||||||
|
|
||||||
<p class="lead" id="checkfulllist"></p>
|
<p class="lead text-center" id="checkfulllist"></p>
|
||||||
<p class="hint" id="xmppis"></p>
|
<p class="hint text-center" id="xmppis"></p>
|
||||||
</div>
|
</div>
|
||||||
<script src="js/i18n-text.js"></script>
|
<script src="js/i18n-text.js"></script>
|
||||||
<script src="js/main.js"></script>
|
<script src="js/main.js"></script>
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
function show_clients(client_array) {
|
function show_clients(client_array) {
|
||||||
var list = document.getElementById('client_list');
|
var list = document.getElementById('client_list');
|
||||||
for (var id = 0; id < client_array.length; id++) {
|
for (var id = 0; id < client_array.length; id++) {
|
||||||
var item = document.createElement('li');
|
var item = document.createElement('p');
|
||||||
item.innerHTML = client_array[id];
|
item.innerHTML = client_array[id];
|
||||||
list.appendChild(item);
|
list.appendChild(item);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue