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:

breadcrumbs.component.ts
8 8
@Component({
9 9
  selector: 'breadcrumbs',
10 10
  template: `
11
    <ul class="uk-breadcrumb" [class.uk-light]="light">
11
    <ul [class]="'uk-breadcrumb '+addClass" [class.uk-light]="light">
12 12
      <li *ngFor="let breadcrumb of breadcrumbs">
13 13
        <a class="uk-text-capitalize" *ngIf="breadcrumb.route" [routerLink]="breadcrumb.route">{{breadcrumb.name}}</a>
14 14
        <span class="uk-text-capitalize" *ngIf="!breadcrumb.route">{{breadcrumb.name}}</span>
......
19 19

  
20 20
  @Input() public light: boolean = false;
21 21
  @Input() public breadcrumbs: Breadcrumb[] = [];
22
}
22
  @Input() public addClass;
23
}

Also available in: Unified diff