Hallo Arnaud,
die Zeile aus all.js habe ich unten mit 6000 markiert
$http.get('/api/lm/read_custom_config').then(function(resp) {
var idx, index, j, len1, ref1, results;
$scope.customDisplay = resp.data.customDisplay.teachers;
$scope.customTitle = [''];
ref1 = [1, 2, 3];
results = [];
for (j = 0, len1 = ref1.length; j < len1; j++) {
idx = ref1[j];
6000 if ($scope.customDisplay[idx] === void 0 || $scope.customDisplay[idx] === '') {
results.push($scope.customTitle.push(''));
} else if ($scope.customDisplay[idx] === 'proxyAddresses') {
results.push($scope.customTitle.push(resp.data.proxyAddresses.teachers.title));
} else {
index = $scope.customDisplay[idx].slice(-1);
if ($scope.isListAttr($scope.customDisplay[idx])) {
results.push($scope.customTitle.push(resp.data.customMulti.teachers[index].title || ''));
} else {
results.push($scope.customTitle.push(resp.data.custom.teachers[index].title || ''));
}
}
}
return results;
});
Viele Grüße
Klaus