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
/** | |
* Retrieves a list of all of the members on a Trello board and stores and | |
* returns their names in an array. It will not include any duplicates. | |
* | |
* Trello names are usually represented as "Elliot Alderson (mrrobot)" but the | |
* returned array will only return an array with their actual name (that is, | |
* Ellio Alderson). | |
* | |
* This does not require jQuery or any third-party library to run. If you want | |
* to run this from the console of Chrome, then paste this entire function into |