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
|
* Returns the results of a specified select element
|
||||||
*
|
*
|
||||||
* @param {HTMLElement} inputSelect The target 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){
|
getResults: function(inputSelect){
|
||||||
|
|
||||||
//Prepare return
|
//Prepare return
|
||||||
var usersID = {};
|
var usersID = [];
|
||||||
|
|
||||||
for(i in inputSelect.children){
|
for(i in inputSelect.children){
|
||||||
|
|
||||||
//Check it is really a children
|
//Check it is really a children
|
||||||
if(inputSelect.children[i].value){
|
if(inputSelect.children[i].value){
|
||||||
//Get ID
|
//Add ID to the table
|
||||||
var userID = inputSelect.children[i].value;
|
usersID.push(inputSelect.children[i].value);
|
||||||
|
|
||||||
usersID['user-'+userID] = userID;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user