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