From e37fa5aaca7636b105062583af6ced755636548f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20V=C3=A9ril?= Date: Fri, 24 Jul 2020 13:56:17 +0200 Subject: [PATCH] Add support for generic double --- static/js/data.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/static/js/data.js b/static/js/data.js index f18c4a92..7f49ad8b 100644 --- a/static/js/data.js +++ b/static/js/data.js @@ -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 } } }