array wahnsinn
This commit is contained in:
parent
93ca2894dd
commit
760f33dbed
|
|
@ -241,7 +241,7 @@
|
|||
var ncfiledata = [];
|
||||
//Anlegen der Standarddateien
|
||||
function rebuildingStandards(id){
|
||||
var ncfiledata = [];
|
||||
ncfiledata = [];
|
||||
$("#cloud_process_standards").show();
|
||||
ncfiledata[0] = ['standardid', id];
|
||||
console.log("LOADING NC FILES");
|
||||
|
|
@ -265,9 +265,11 @@
|
|||
standardcounter += 1;
|
||||
if(standardcounter < standards.length){
|
||||
console.log("STANDARD " + id + " OK");
|
||||
ncfiledata = [];
|
||||
rebuildingStandards(standards[standardcounter]);
|
||||
}
|
||||
else{
|
||||
ncfiledata = [];
|
||||
console.log("STANDARD " + id + " OK");
|
||||
$("#migfinished").show();
|
||||
}
|
||||
|
|
@ -276,9 +278,11 @@
|
|||
standardcounter += 1;
|
||||
console.log("FEHLER BEI STANDARD " + data['status'] + " ID " + id);
|
||||
if(standardcounter < standards.length){
|
||||
ncfiledata = [];
|
||||
rebuildingStandards(standards[standardcounter]);
|
||||
}
|
||||
else{
|
||||
ncfiledata = [];
|
||||
console.log("FEHLER BEI STANDARD " + data['status'] + " ID " + id);
|
||||
$("#migfinished").show();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue