Removed temporary diagnostic output
authorArt Cancro <ajc@citadel.org>
Tue, 21 Nov 2023 14:41:18 +0000 (09:41 -0500)
committerArt Cancro <ajc@citadel.org>
Tue, 21 Nov 2023 14:41:18 +0000 (09:41 -0500)
webcit-ng/static/js/upload.js

index 5ae027c8f6f506fef9903e75fb5377676fc96483..cc4c5fc2be3e0465faa650f9e9e4d5457d446a31 100644 (file)
@@ -82,7 +82,6 @@ delete_upload = async(ref) => {
        );
 
        if (response.ok) {                              // If the server accepted the delete, remove it from the screen
-               console.log("server deleted " + ref);
                var el = document.getElementById(ref);
                el.parentNode.removeChild(el);
        }