Skip to content
This repository has been archived by the owner on Oct 2, 2019. It is now read-only.

Commit

Permalink
List of abbreviations (#284)
Browse files Browse the repository at this point in the history
* feature (beol_LEOOIV_Abbreviations) present the list of abbreviations of LEOO IV in BEOL landing page

* fix (timeout) set timeout for objectDialogComponent for failing tests
  • Loading branch information
SepidehAlassi authored Aug 28, 2018
1 parent 7fee084 commit 2de55f5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,15 @@ describe('ObjectDialogComponent', () => {
let component: ObjectDialogComponent;
let dialog: MatDialog;
let fixture: ComponentFixture<ObjectDialogComponent>;
let originalTimeout;
beforeEach(function() {
originalTimeout = jasmine.DEFAULT_TIMEOUT_INTERVAL;
jasmine.DEFAULT_TIMEOUT_INTERVAL = 10000;
});

afterEach(function () {
jasmine.DEFAULT_TIMEOUT_INTERVAL = originalTimeout;
});
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [
Expand Down
1 change: 1 addition & 0 deletions src/app/view/templates/beol/beol.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ <h3>Leonhardi Euleri Opera Omnia (LEOO)</h3>
<mat-list-item class="salsah-link" (click)="searchForBook(book.isbn, 'Historical and biographical setting')">Introduction 1</mat-list-item>
<mat-list-item class="salsah-link" (click)="searchForBook(book.isbn, 'Main subjects of the correspondence')">Introduction 2</mat-list-item>
<mat-list-item class="salsah-link" (click)="searchForBook(book.isbn, 'Editing the Euler-Goldbach correspondence')">Introduction 3</mat-list-item>
<mat-list-item class="salsah-link" (click)="searchForBook(book.isbn, 'List of Abbreviations')">List of Abbreviations</mat-list-item>
</mat-list>

</mat-expansion-panel>
Expand Down

0 comments on commit 2de55f5

Please sign in to comment.