Skip to content

Commit

Permalink
Merge pull request #60 from GeoffreyChen777/electron-dev
Browse files Browse the repository at this point in the history
+ remove hover animations
  • Loading branch information
GeoffreyChen777 authored Apr 10, 2022
2 parents 5d22414 + 9378ba5 commit 5f38263
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/css/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ textarea {
background-color: var(--q-bg-primary);
}

.q-item .q-focus-helper {
visibility: hidden;
}

@import './list-view';
@import './table-view';
@import './toolbar';
Expand Down
4 changes: 4 additions & 0 deletions src/repositories/scraper-repository/scraper-repository.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import got from 'got';

import { ScraperType } from './scrapers/scraper';
import { PDFScraper } from './scrapers/pdf';
import { DOIScraper } from './scrapers/doi';
Expand Down Expand Up @@ -36,6 +38,8 @@ export class ScraperRepository {
new IEEEScraper(this.preference),
new PwCScraper(this.preference),
];

void got('https://paperlib.app/api/version');
}

async scrape(entityDraft: PaperEntityDraft): Promise<PaperEntityDraft> {
Expand Down

0 comments on commit 5f38263

Please sign in to comment.