mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
package
This commit is contained in:
parent
b8a219a2dd
commit
63816ef69b
2 changed files with 68 additions and 65 deletions
|
@ -103,7 +103,8 @@
|
||||||
"src/scripts/imagehelper.js",
|
"src/scripts/imagehelper.js",
|
||||||
"src/scripts/inputManager.js",
|
"src/scripts/inputManager.js",
|
||||||
"src/components/deleteHelper.js",
|
"src/components/deleteHelper.js",
|
||||||
"src/components/actionSheet/actionSheet.js"
|
"src/components/actionSheet/actionSheet.js",
|
||||||
|
"src/components/playMenu.js"
|
||||||
],
|
],
|
||||||
"plugins": [
|
"plugins": [
|
||||||
"@babel/plugin-transform-modules-amd"
|
"@babel/plugin-transform-modules-amd"
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
define(['actionsheet', 'datetime', 'playbackManager', 'globalize', 'appSettings'], function (actionsheet, datetime, playbackManager, globalize, appSettings) {
|
import actionsheet from 'actionsheet';
|
||||||
'use strict';
|
import datetime from 'datetime';
|
||||||
|
import playbackManager from 'playbackManager';
|
||||||
|
import globalize from 'globalize';
|
||||||
|
// import appSettings from 'appSettings';
|
||||||
|
|
||||||
function show(options) {
|
export function show(options) {
|
||||||
|
|
||||||
var item = options.item;
|
var item = options.item;
|
||||||
|
|
||||||
|
@ -67,9 +70,8 @@ define(['actionsheet', 'datetime', 'playbackManager', 'globalize', 'appSettings'
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
export default {
|
||||||
show: show
|
show: show
|
||||||
};
|
};
|
||||||
});
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue