mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-22 20:19:21 +00:00
Use array rather than object to return results
This commit is contained in:
parent
2d0ba1fedc
commit
3245935617
@ -78,21 +78,19 @@ ComunicWeb.components.userSelect = {
|
||||
* Returns the results of a specified select element
|
||||
*
|
||||
* @param {HTMLElement} inputSelect The target element
|
||||
* @return {Object} An object with all the select IDs
|
||||
* @return {Array} An array with all the select IDs
|
||||
*/
|
||||
getResults: function(inputSelect){
|
||||
|
||||
//Prepare return
|
||||
var usersID = {};
|
||||
var usersID = [];
|
||||
|
||||
for(i in inputSelect.children){
|
||||
|
||||
//Check it is really a children
|
||||
if(inputSelect.children[i].value){
|
||||
//Get ID
|
||||
var userID = inputSelect.children[i].value;
|
||||
|
||||
usersID['user-'+userID] = userID;
|
||||
//Add ID to the table
|
||||
usersID.push(inputSelect.children[i].value);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user