diff --git a/content/multipledataset.html b/content/multipledataset.html index 296a4c6b..7ad47a6e 100644 --- a/content/multipledataset.html +++ b/content/multipledataset.html @@ -24,7 +24,7 @@ draft: false window.onload = async () => { const LatexInline = ['\\(', '\\)'] var al = $("#AllowList") - var ef = $("#exitationFilter") + var ef = $("#excitationFilter") for (const [name, value] of excitationTypes.All) { var description = null switch (Number(value)) { @@ -339,7 +339,12 @@ draft: false if (unsafe) { td.append($("
",{title:"unsafe value",style:"float: left"}).text('⚠')) } - td.append(val) + if (unsafe && !$("#cb_unsafe").is(':checked')){ + td.append($("").append(val)) + } + else{ + td.append(val) + } } tr.append(td) } @@ -407,9 +412,9 @@ draft: false
+
+
-
-