v2 up aijg9aß

This commit is contained in:
2018-12-03 11:52:25 +01:00
parent 00bbae0989
commit 9a2bf77b50
3 changed files with 10 additions and 8 deletions

View File

@@ -1344,12 +1344,13 @@ class AutomaticDispose {
// TODO check cars driving or already there
if (self.MissionConfig.share){
let elem = $('#vehicle_show_table_all tr input[type="checkbox"]:checked')
for (let i = 0; i < elem.length; i++) {
let elems = $('#vehicle_show_table_all tr input[type="checkbox"]:checked')
console.log(elems)
for (let i = 0; i < elems.length; i++) {
if (i === 0) {
continue;
}
$(elem[i]).click();
elems[i].click();
}
}