1
0
Fork 0
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:
dkanada 2019-09-13 00:05:15 -07:00
parent 1f0f1dc1b3
commit 5104aabead
5 changed files with 5 additions and 6 deletions

View file

@ -19,7 +19,7 @@
"hls.js": "^0.12.4", "hls.js": "^0.12.4",
"howler": "^2.1.2", "howler": "^2.1.2",
"swiper": "^4.5.0", "swiper": "^4.5.0",
"sortable": "^2.0.0", "sortablejs": "^1.9.0",
"libjass": "^0.11.0" "libjass": "^0.11.0"
}, },
"scripts": { "scripts": {

View file

@ -27,7 +27,7 @@ require("swiper/dist/css/swiper.min.css");
_define("swiper", function() { return swiper; }); _define("swiper", function() { return swiper; });
// sortable // sortable
var sortable = require("sortable"); var sortable = require("sortablejs");
_define("sortable", function() { return sortable; }); _define("sortable", function() { return sortable; });
// libjass // libjass

View file

@ -178,7 +178,7 @@
.playlistIndexIndicatorImage { .playlistIndexIndicatorImage {
-webkit-background-size: initial initial !important; -webkit-background-size: initial initial !important;
background-size: initial !important; background-size: initial !important;
background-image: url(../img/equalizer.gif) !important background-image: url(../../img/equalizer.gif) !important;
} }
.hideVideoButtons .videoButton { .hideVideoButtons .videoButton {
@ -202,7 +202,6 @@
} }
@media all and (max-width:34em) { @media all and (max-width:34em) {
.nowPlayingInfoButtons .btnNowPlayingFastForward, .nowPlayingInfoButtons .btnNowPlayingFastForward,
.nowPlayingInfoButtons .btnNowPlayingRewind, .nowPlayingInfoButtons .btnNowPlayingRewind,
.nowPlayingInfoButtons .playlist .listItemMediaInfo { .nowPlayingInfoButtons .playlist .listItemMediaInfo {

View file

@ -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"; "use strict";
function showAudioMenu(context, player, button, item) { function showAudioMenu(context, player, button, item) {

View file

@ -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"; "use strict";
return function(view, params) { return function(view, params) {
var remoteControl = new remotecontrolFactory; var remoteControl = new remotecontrolFactory;