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

Update voice components

This commit is contained in:
Tavares André 2016-02-17 07:58:07 +01:00
parent c6b15e3001
commit 984b49650e
14 changed files with 1613 additions and 449 deletions

View file

@ -0,0 +1,16 @@

define([], function () {
return function (result) {
result.success = true;
switch (result.item.deviceid) {
case 'displaymirroring':
MediaController.enableDisplayMirroring(false);
break;
default:
result.success = false;
return;
}
}
});