mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-12-25 05:43:46 +01:00
Continue
This commit is contained in:
parent
e92def5e02
commit
9415856b98
@ -221,7 +221,21 @@ draft: false
|
||||
dtb.empty()
|
||||
sel_ref = $("#sel_ref")
|
||||
await doiCache.addRange(window.filt.map((x)=>x.DOI.string))
|
||||
for (const el of uniq(window.filt.map(d=>[d.code,d.method,d.DOI]))){
|
||||
for (const el of uniq(window.filt.map(d=>[d.code,d.method,d.DOI])).sort((a,b)=>{
|
||||
if (a[1].method.name==b[1].name) {
|
||||
return 0
|
||||
}
|
||||
else{
|
||||
if(a.method.name=="TBE"){
|
||||
return -1
|
||||
}
|
||||
else if(b.method.name=="TBE){
|
||||
return 1
|
||||
}
|
||||
}
|
||||
return 0
|
||||
}
|
||||
{
|
||||
$("<option/>", {
|
||||
value: JSON.stringify(el)
|
||||
}).text(el[1]).appendTo(sel_ref)
|
||||
|
@ -161,7 +161,7 @@ class dataFileBase {
|
||||
this.sourceFile=null
|
||||
}
|
||||
get isTBE(){
|
||||
return this.method.name="TBE"
|
||||
return this.method.name=="TBE"
|
||||
}
|
||||
static async loadAsync(file) {
|
||||
switch (trueTypeOf(file)) {
|
||||
|
Loading…
Reference in New Issue
Block a user