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

add js local asset manager

This commit is contained in:
Luke Pulverenti 2015-06-03 01:30:14 -04:00
parent 2eff956685
commit 6e6bf85030
6 changed files with 92 additions and 3 deletions

View file

@ -0,0 +1,11 @@
(function () {
function getLocalMediaSource(serverId, itemId) {
return null;
}
window.LocalAssetManager = {
getLocalMediaSource: getLocalMediaSource
};
})();