mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
move remote control to folder and fix sortable dependency
This commit is contained in:
parent
1f0f1dc1b3
commit
5104aabead
5 changed files with 5 additions and 6 deletions
|
@ -19,7 +19,7 @@
|
|||
"hls.js": "^0.12.4",
|
||||
"howler": "^2.1.2",
|
||||
"swiper": "^4.5.0",
|
||||
"sortable": "^2.0.0",
|
||||
"sortablejs": "^1.9.0",
|
||||
"libjass": "^0.11.0"
|
||||
},
|
||||
"scripts": {
|
||||
|
|
|
@ -27,7 +27,7 @@ require("swiper/dist/css/swiper.min.css");
|
|||
_define("swiper", function() { return swiper; });
|
||||
|
||||
// sortable
|
||||
var sortable = require("sortable");
|
||||
var sortable = require("sortablejs");
|
||||
_define("sortable", function() { return sortable; });
|
||||
|
||||
// libjass
|
||||
|
|
|
@ -178,7 +178,7 @@
|
|||
.playlistIndexIndicatorImage {
|
||||
-webkit-background-size: initial initial !important;
|
||||
background-size: initial !important;
|
||||
background-image: url(../img/equalizer.gif) !important
|
||||
background-image: url(../../img/equalizer.gif) !important;
|
||||
}
|
||||
|
||||
.hideVideoButtons .videoButton {
|
||||
|
@ -202,7 +202,6 @@
|
|||
}
|
||||
|
||||
@media all and (max-width:34em) {
|
||||
|
||||
.nowPlayingInfoButtons .btnNowPlayingFastForward,
|
||||
.nowPlayingInfoButtons .btnNowPlayingRewind,
|
||||
.nowPlayingInfoButtons .playlist .listItemMediaInfo {
|
|
@ -1,4 +1,4 @@
|
|||
define(["browser", "datetime", "backdrop", "libraryBrowser", "listView", "imageLoader", "playbackManager", "nowPlayingHelper", "events", "connectionManager", "apphost", "globalize", "cardStyle", "emby-itemscontainer", "css!css/nowplaying.css", "emby-ratingbutton"], function (browser, datetime, backdrop, libraryBrowser, listView, imageLoader, playbackManager, nowPlayingHelper, events, connectionManager, appHost, globalize) {
|
||||
define(["browser", "datetime", "backdrop", "libraryBrowser", "listView", "imageLoader", "playbackManager", "nowPlayingHelper", "events", "connectionManager", "apphost", "globalize", "cardStyle", "emby-itemscontainer", "css!./remotecontrol.css", "emby-ratingbutton"], function (browser, datetime, backdrop, libraryBrowser, listView, imageLoader, playbackManager, nowPlayingHelper, events, connectionManager, appHost, globalize) {
|
||||
"use strict";
|
||||
|
||||
function showAudioMenu(context, player, button, item) {
|
|
@ -1,4 +1,4 @@
|
|||
define(["components/remotecontrol", "libraryMenu", "emby-button"], function(remotecontrolFactory, libraryMenu) {
|
||||
define(["components/remotecontrol/remotecontrol", "libraryMenu", "emby-button"], function(remotecontrolFactory, libraryMenu) {
|
||||
"use strict";
|
||||
return function(view, params) {
|
||||
var remoteControl = new remotecontrolFactory;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue