Project

General

Profile

« Previous | Next » 

Revision 58552

[Library|Trunk]

Search:

-Entities Selection: add check if route is enabled
-Delay in result types checkboxes to 2 s
-Use breadcrumb component
-add connect background
-remove space between names in showAuthors component
-Filters:
-message about top 100 always visible
-rename to view all
-change css for search input
-show 100 if results > 95
-view less under the 2nd list
-Search bar:
-select contains all avaliable entities not only search results
-

Landing pages:

-correct issue with pmid in landing
-correct issue with date in cite this
-Hide Addthis:
value in properties

View differences:

parsingFunctions.class.ts
454 454
    let identifiers = new Map<string, string[]>();
455 455
    
456 456
    if (pid.hasOwnProperty("classname") && pid['classname'] != "") {
457
      if (pid.classname == "doi" || pid.classname == "pmc" || pid.classname == "handle" || pid == "pmid") {
457
      if (pid.classname == "doi" || pid.classname == "pmc" || pid.classname == "handle" || pid.classname == "pmid") {
458 458
        if (!identifiers.has(pid.classname)) {
459 459
          identifiers.set(pid.classname, new Array<string>());
460 460
        }
......
463 463
      }
464 464
    } else {
465 465
      for (let i = 0; i < pid.length; i++) {
466
        if (pid[i].classname == "doi" || pid[i].classname == "pmc" || pid[i].classname == "handle" || pid == "pmid") {
466
        if (pid[i].classname == "doi" || pid[i].classname == "pmc" || pid[i].classname == "handle" || pid[i].classname == "pmid") {
467 467
          if (!identifiers.has(pid[i].classname)) {
468 468
            identifiers.set(pid[i].classname, new Array<string>());
469 469
          }

Also available in: Unified diff