10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-08-26 06:01:49 +02:00

Delete unnescesary value

This commit is contained in:
Mickaël Véril 2019-12-17 11:17:34 +01:00
parent b372db4320
commit 811e4cb224

View File

@ -28,12 +28,12 @@ draft: false
for (const [name,value] of excitationTypes.All) {
$("<li/>").text(LatexInline[0]+value.LaTeX+LatexInline[1]).appendTo(al)
$('<label />', { 'for': 'cb_'+name, text:LatexInline[0]+value.LaTeX+LatexInline[1]}).appendTo(ef);
$("<input/>",{type:"checkbox",id:"cb_"+name, name=name, value:Number(value)}).appendTo(ef)
$("<input/>",{type:"checkbox",id:"cb_"+name, name:name, value:Number(value)}).appendTo(ef)
}
await MathJax.typesetPromise();
$("<li/>").text("Unsafe").appendTo(al)
$('<label/>', { 'for': 'cb_unsafe', text:"Unsafe"}).appendTo(ef);
$("<input/>",{type:"checkbox",id:"cb_unsafe",nmae=unsafe,value:true})
$("<input/>",{type:"checkbox",id:"cb_unsafe",name:"unsafe"})
delete(al)
delete(ef)
window.doiCache = new DOICache()