10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-23 19:27:42 +02:00

Fix multiplicity is not integer on final

This commit is contained in:
Mickaël Véril 2020-01-07 11:24:34 +01:00
parent 2167f5bea6
commit abc2d4cb33

View File

@ -169,7 +169,7 @@ class dataFileBase {
} }
var start = new state(parseInt(vals[0], 10), parseInt(vals[1], 10), vals[2]); var start = new state(parseInt(vals[0], 10), parseInt(vals[1], 10), vals[2]);
var end = new state(parseInt(vals[3], 10), vals[4], vals[5]); var end = new state(parseInt(vals[3], 10), parseInt(vals[4],10), vals[5]);
var ex = new excitationValue(start, end, parseFloat(vals[6], 10)); var ex = new excitationValue(start, end, parseFloat(vals[6], 10));
dat.excitations.push(ex); dat.excitations.push(ex);
}; };