1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

implement select menu for chromecast version

This commit is contained in:
dkanada 2020-05-17 00:36:10 +09:00
parent f45a4d1a8c
commit 0f7a79caab
5 changed files with 38 additions and 2 deletions

View file

@ -153,6 +153,14 @@ import events from 'events';
return this.get('datetimelocale', false);
}
export function chromecastVersion(val) {
if (val !== undefined) {
return this.set('chromecastVersion', val.toString());
}
return this.get('chromecastVersion') || 'stable';
}
export function skipBackLength(val) {
if (val !== undefined) {
return this.set('skipBackLength', val.toString());