Complete 4.4.1: Mobile Gesture Support - Add pull-to-refresh indicator and mark task complete

This commit is contained in:
VinnyNC 2025-09-29 23:32:50 -04:00
parent b67f14bb9b
commit a25118dcd8
2 changed files with 17 additions and 5 deletions

View file

@ -494,7 +494,17 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['action'])) {
</section>
</aside>
</main>
<!-- Pull-to-refresh indicator for mobile -->
<div id="pullRefreshIndicator" class="pull-refresh-indicator" aria-hidden="true" style="display: none;">
<div class="pull-refresh-content">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M21 12a9 9 0 1 1-6.219-8.56"></path>
</svg>
<span>Pull to refresh</span>
</div>
</div>
<!-- Enhanced Notification System -->
<div class="notifications-container" role="region" aria-live="assertive" aria-label="Notifications" id="notificationsContainer"></div>