mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Merge pull request #1366 from jellyfin/refactor
Update casing for some files and add placeholder elements
This commit is contained in:
commit
2c4f8d928a
22 changed files with 79 additions and 58 deletions
|
@ -7,7 +7,7 @@ import 'css!./style';
|
|||
import 'material-icons';
|
||||
import 'paper-icon-button-light';
|
||||
|
||||
import TableOfContent from './tableOfContent';
|
||||
import TableOfContents from './tableOfContents';
|
||||
|
||||
export class BookPlayer {
|
||||
constructor() {
|
||||
|
@ -163,7 +163,7 @@ export class BookPlayer {
|
|||
|
||||
openTableOfContents() {
|
||||
if (this._loaded) {
|
||||
this._tocElement = new TableOfContent(this);
|
||||
this._tocElement = new TableOfContents(this);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -277,6 +277,7 @@ export class BookPlayer {
|
|||
if (item.Path && (item.Path.endsWith('epub'))) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue