10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-03 18:06:06 +02:00

Add support for generic double

This commit is contained in:
Mickaël Véril 2020-07-24 13:56:17 +02:00
parent cd6723fc8c
commit e37fa5aaca

View File

@ -169,6 +169,8 @@ class excitationBase {
this.type.Value = this.type | excitationTypes.Rydberg
} else if (ty.includes(String.raw`\mathrm{V}`)) {
this.type.Value = this.type | excitationTypes.Valence
} else if (ty.toLowerCase()===excitationTypes.Double.description.string.toLowerCase()){
this.type.Value = this.type | excitationTypes.Double
}
}
}