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
+1 -1
View File
@@ -1,4 +1,4 @@
/*Generated on:Mon Dec 03 2018 11:50:38 GMT+0100 (CET)*/ /*Generated on:Mon Dec 03 2018 11:52:24 GMT+0100 (CET)*/
var AutomaticDispose_Branch = "master"; var AutomaticDispose_Branch = "master";
var AutomaticDispose_URL = "https://jf.git.rest/Jomaar/automatic-dispose/raw/branch/"; var AutomaticDispose_URL = "https://jf.git.rest/Jomaar/automatic-dispose/raw/branch/";
var da_lss_adis_time = new Date().getTime(); var da_lss_adis_time = new Date().getTime();
+5 -4
View File
@@ -1,4 +1,4 @@
/*Generated on:Mon Dec 03 2018 11:50:38 GMT+0100 (CET)*/ /*Generated on:Mon Dec 03 2018 11:52:24 GMT+0100 (CET)*/
/* /*
* Dexie.js - a minimalistic wrapper for IndexedDB * Dexie.js - a minimalistic wrapper for IndexedDB
* =============================================== * ===============================================
@@ -18936,12 +18936,13 @@ class AutomaticDispose {
// TODO check cars driving or already there // TODO check cars driving or already there
if (self.MissionConfig.share){ if (self.MissionConfig.share){
let elem = $('#vehicle_show_table_all tr input[type="checkbox"]:checked') let elems = $('#vehicle_show_table_all tr input[type="checkbox"]:checked')
for (let i = 0; i < elem.length; i++) { console.log(elems)
for (let i = 0; i < elems.length; i++) {
if (i === 0) { if (i === 0) {
continue; continue;
} }
$(elem[i]).click(); elems[i].click();
} }
} }
+4 -3
View File
@@ -1344,12 +1344,13 @@ class AutomaticDispose {
// TODO check cars driving or already there // TODO check cars driving or already there
if (self.MissionConfig.share){ if (self.MissionConfig.share){
let elem = $('#vehicle_show_table_all tr input[type="checkbox"]:checked') let elems = $('#vehicle_show_table_all tr input[type="checkbox"]:checked')
for (let i = 0; i < elem.length; i++) { console.log(elems)
for (let i = 0; i < elems.length; i++) {
if (i === 0) { if (i === 0) {
continue; continue;
} }
$(elem[i]).click(); elems[i].click();
} }
} }