Created
May 8, 2017 08:47
-
-
Save tyage/54680ff5394ae78d7df00e21d3ce655a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
channels = [] // channels to delete | |
deleteC = (i) => { | |
TS.web.channel.confirmChannelDeletion($('form.action_list').eq(2), '#c58g7484s') | |
$.post('/archives', { 'crumb': 's-1494232592-a84e89cf65-☃', 'do_delete': 1, 'channel_id': channels[i] }) | |
setTimeout(() => deleteC(i+1), 1000) | |
}; | |
deleteC(0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment