mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
16 lines
361 B
JavaScript
16 lines
361 B
JavaScript
|
|
define([], function () {
|
|
|
|
return function (result) {
|
|
result.success = true;
|
|
switch (result.item.deviceid) {
|
|
case 'displaymirroring':
|
|
MediaController.enableDisplayMirroring(false);
|
|
break;
|
|
default:
|
|
result.success = false;
|
|
return;
|
|
}
|
|
}
|
|
|
|
}); |