A social pastebin built on atproto.
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

base: prevent double hits on post/reply

+10
+10
templates/base.html
··· 120 120 {% endif %} 121 121 122 122 <script> 123 + // Prevent double-submit on all forms 124 + document.querySelectorAll('form').forEach(function(form) { 125 + form.addEventListener('submit', function() { 126 + var btn = form.querySelector('button[type="submit"]'); 127 + if (btn) { 128 + btn.disabled = true; 129 + btn.style.opacity = '0.5'; 130 + } 131 + }); 132 + }); 123 133 // Convert UTC timestamps to local timezone 124 134 document.querySelectorAll('.js-localtime').forEach(function(el) { 125 135 var dt = new Date(el.getAttribute('datetime'));