Incognito Reader (#560)
* Hooked in incognito mode into the manga reader
This commit is contained in:
parent
c728b79616
commit
2eaddbdfac
8 changed files with 103 additions and 13 deletions
|
@ -16,7 +16,8 @@ export enum Action {
|
|||
Info = 5,
|
||||
RefreshMetadata = 6,
|
||||
Download = 7,
|
||||
Bookmarks = 8
|
||||
Bookmarks = 8,
|
||||
IncognitoRead = 9
|
||||
}
|
||||
|
||||
export interface ActionItem<T> {
|
||||
|
@ -203,6 +204,12 @@ export class ActionFactoryService {
|
|||
callback: this.dummyCallback,
|
||||
requiresAdmin: false
|
||||
},
|
||||
{
|
||||
action: Action.IncognitoRead,
|
||||
title: 'Read in Incognito',
|
||||
callback: this.dummyCallback,
|
||||
requiresAdmin: false
|
||||
},
|
||||
{
|
||||
action: Action.Edit,
|
||||
title: 'Info',
|
||||
|
@ -223,7 +230,13 @@ export class ActionFactoryService {
|
|||
title: 'Mark as Unread',
|
||||
callback: this.dummyCallback,
|
||||
requiresAdmin: false
|
||||
}
|
||||
},
|
||||
{
|
||||
action: Action.IncognitoRead,
|
||||
title: 'Read in Incognito',
|
||||
callback: this.dummyCallback,
|
||||
requiresAdmin: false
|
||||
},
|
||||
];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue