From 16cb63b05910055c31dca821c86f2eb815da99e3 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Tue, 12 May 2026 19:02:03 +0000
Subject: [PATCH] =Attempt to stop queue.js from constantly running poll cycle if the status is 429
---
inc/helpers/media.php | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/inc/helpers/media.php b/inc/helpers/media.php
index 80c33c7..82c6f3f 100644
--- a/inc/helpers/media.php
+++ b/inc/helpers/media.php
@@ -9,14 +9,14 @@
?>
<dialog class="gallery" aria-modal="true" aria-label="Image Gallery">
- <div class="wrap">
+ <div class="wrap col">
<div class="controls row">
- <button type="button" class="cancel" aria-label="Close Gallery"> <?= jvbIcon('x') ?></button>
- <button class="nav prev row" aria-label="Previous image">
+ <button type="button" class="cancel" title="Close Gallery" aria-label="Close Gallery"> <?= jvbIcon('x') ?></button>
+ <button class="nav prev" title="Previous image" aria-label="Previous image">
<?= jvbIcon('caret-left') ?>
</button>
- <button class="nav next row" aria-label="Next image">
+ <button class="nav next" title="Next Image" aria-label="Next image">
<?= jvbIcon('caret-right') ?>
</button>
</div>
--
Gitblit v1.10.0