From a9b3b28d001941921aa70d37fdc87c758a163a44 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Fri, 05 Jun 2026 16:47:03 +0000
Subject: [PATCH] =Some hefty changes to FeedBlock. Transitioning to loading first page in php to save on extra requests. Got a bit to do yet, but I have to work on Northeh for a bit here.

---
 assets/js/concise/Queue.js |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/assets/js/concise/Queue.js b/assets/js/concise/Queue.js
index 1122684..0290aa9 100644
--- a/assets/js/concise/Queue.js
+++ b/assets/js/concise/Queue.js
@@ -31,6 +31,7 @@
 		this.initElements();
 		this.initListeners();
 		this.initStore();
+
 		if (this.canUpdateUI && this.ui.panel) {
 			this.popup = window.jvbPopup.registerPopup({
 				popup: this.ui.panel,
@@ -616,12 +617,12 @@
 					body: requestBody
 				}
 			);
-			console.log('Sending request with data: ', req);
+			// console.log('Sending request with data: ', req);
 			const result = await response.json();
 			if (skip) {
 				operation.data = {};
 			}
-			console.log('Result: ', result);
+			// console.log('Result: ', result);
 			if (response.ok && result.success) {
 				this.notify('sent-to-server', req);
 				if (result.id && operation.id !== result.id) {

--
Gitblit v1.10.0