Created
April 9, 2013 19:08
-
-
Save chadcrowell/5348469 to your computer and use it in GitHub Desktop.
Mass delete files from Basecamp Classic. Open files tab in project, paste this into your console and press Enter when prompted to delete each file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var els = document.querySelectorAll('.left .trash'); for(var i = 0; i < els.length; i++) { els[i].click(); } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment