Spaces:
Running
Running
Update templates/index.html
Browse files- templates/index.html +3 -3
templates/index.html
CHANGED
@@ -283,7 +283,7 @@
|
|
283 |
owner: {{ owner }}<br>
|
284 |
ip: {{ ip }}<br>
|
285 |
lat, lon: {{ loc }}
|
286 |
-
</span><span id="show-more">
|
287 |
<br>
|
288 |
<span id="tag">made by brayden moore</span>
|
289 |
</p>
|
@@ -501,10 +501,10 @@
|
|
501 |
if (additionalInfo.style.height === '0px') {
|
502 |
const scrollHeight = additionalInfo.scrollHeight;
|
503 |
additionalInfo.style.height = `${scrollHeight}px`;
|
504 |
-
showMore.innerHTML = '
|
505 |
} else {
|
506 |
additionalInfo.style.height = '0';
|
507 |
-
showMore.innerHTML = '
|
508 |
}
|
509 |
});
|
510 |
});
|
|
|
283 |
owner: {{ owner }}<br>
|
284 |
ip: {{ ip }}<br>
|
285 |
lat, lon: {{ loc }}
|
286 |
+
</span><span id="show-more">more <i style="margin-bottom:5px; color:var(--text-color);" id="more-button" class="fa-solid fa-caret-down"></i></span>
|
287 |
<br>
|
288 |
<span id="tag">made by brayden moore</span>
|
289 |
</p>
|
|
|
501 |
if (additionalInfo.style.height === '0px') {
|
502 |
const scrollHeight = additionalInfo.scrollHeight;
|
503 |
additionalInfo.style.height = `${scrollHeight}px`;
|
504 |
+
showMore.innerHTML = 'less <i style="margin-bottom:10px; color:var(--text-color);" id="more-button" class="fa-solid fa-caret-up"></i>';
|
505 |
} else {
|
506 |
additionalInfo.style.height = '0';
|
507 |
+
showMore.innerHTML = 'more <i style="margin-bottom:10px; color:var(--text-color);" id="more-button" class="fa-solid fa-caret-down"></i>';
|
508 |
}
|
509 |
});
|
510 |
});
|