One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| var elements = Array.from(document.querySelectorAll('.js-link-block')) | |
| elements.map(function (element) { | |
| var nameElement = element.querySelector('.chartlist-name') | |
| return nameElement && nameElement.textContent.replace(/\s+/g, ' ').trim() | |
| }).forEach(function (name, i, names) { | |
| if (name !== names[i + 1]) return | |
| var deleteButton = elements[i].querySelector('[data-ajax-form-sets-state="deleted"]') | |
| if (deleteButton) deleteButton.click() | |
| location.reload() | |
| }) |
| # --------------------------------------------------------------------------- | |
| # | |
| # Description: This file holds all my BASH configurations and aliases | |
| # | |
| # Sections: | |
| # 1. Environment Configuration | |
| # 2. Make Terminal Better (remapping defaults and adding functionality) | |
| # 3. File and Folder Management | |
| # 4. Searching | |
| # 5. Process Management |