Load new images from the top

This commit is contained in:
simon987 2019-08-27 16:56:05 -04:00
parent 061d8ed6eb
commit 0cf8902730
2 changed files with 7 additions and 4 deletions

View File

@ -169,7 +169,7 @@
</div>
<script src="js/materialize.min.js"></script>
<script src="js/main.js?v=1.3.1"></script>
<script src="js/main.js?v=1.3.2"></script>
</body>
</html>

View File

@ -121,6 +121,8 @@ function connect(exchange, topics) {
};
socket.onclose = (e) => {
console.log(e);
console.log(socket.CLOSED);
document.getElementById("connect").innerHTML = "Disconnected";
document.getElementById("connect").classList.remove("connected");
document.getElementById("connect").classList.remove("connecting");
@ -174,8 +176,8 @@ function createGallery(count) {
function popRow() {
for (let i = 0; i < colCount; i++) {
if (cols[i].hasChildNodes()) {
colHeights[i] -= cols[i].firstChild.height;
cols[i].firstChild.remove();
colHeights[i] -= cols[i].lastChild.height;
cols[i].lastChild.remove();
currentImages -= 1;
}
}
@ -199,7 +201,8 @@ function appendToGallery(child) {
}
}
cols[min].appendChild(child);
cols[min].prepend(child);
if (!child.height) {
colHeights[min] += 2400 / colCount;
child.onload = function () {