mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 01:17:14 +02:00
Miscellaneous fixes
This commit is contained in:
parent
5b77274969
commit
c50be5a872
1 changed files with 2 additions and 2 deletions
|
@ -613,7 +613,7 @@ var modelUploader = (function () {
|
||||||
if (mapping[TEXDIR_FIELD] === "") {
|
if (mapping[TEXDIR_FIELD] === "") {
|
||||||
mapping[TEXDIR_FIELD] = ".";
|
mapping[TEXDIR_FIELD] = ".";
|
||||||
}
|
}
|
||||||
mapping[SCALE_FIELD] = form[6].value;
|
mapping[SCALE_FIELD] = form[2].value;
|
||||||
|
|
||||||
writeMapping(fstBuffer);
|
writeMapping(fstBuffer);
|
||||||
|
|
||||||
|
@ -800,7 +800,7 @@ var modelUploader = (function () {
|
||||||
//debugResponse();
|
//debugResponse();
|
||||||
if (req.readyState === req.DONE) {
|
if (req.readyState === req.DONE) {
|
||||||
if (req.status === 200) {
|
if (req.status === 200) {
|
||||||
uploadedChecks = 30;
|
uploadedChecks = UPLOADED_CHECKS;
|
||||||
checkUploaded();
|
checkUploaded();
|
||||||
} else {
|
} else {
|
||||||
print("Error: " + req.status + " " + req.statusText);
|
print("Error: " + req.status + " " + req.statusText);
|
||||||
|
|
Loading…
Reference in a new issue