mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
disable now playing bar animation for now
This commit is contained in:
parent
996f2504b2
commit
7ac20e0572
9 changed files with 315 additions and 390 deletions
|
@ -1465,21 +1465,17 @@ var Dashboard = {
|
|||
|
||||
loadExternalPlayer: function () {
|
||||
|
||||
var deferred = DeferredBuilder.Deferred();
|
||||
return new Promise(function (resolve, reject) {
|
||||
|
||||
require(['scripts/externalplayer.js'], function () {
|
||||
require(['scripts/externalplayer.js'], function () {
|
||||
|
||||
if (Dashboard.isRunningInCordova()) {
|
||||
require(['cordova/externalplayer.js'], function () {
|
||||
|
||||
deferred.resolve();
|
||||
});
|
||||
} else {
|
||||
deferred.resolve();
|
||||
}
|
||||
if (Dashboard.isRunningInCordova()) {
|
||||
require(['cordova/externalplayer.js'], resolve);
|
||||
} else {
|
||||
resolve();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return deferred.promise();
|
||||
},
|
||||
|
||||
exitOnBack: function () {
|
||||
|
@ -2190,6 +2186,8 @@ var AppInfo = {};
|
|||
deps.push('scripts/librarymenu');
|
||||
deps.push('apiclient/deferred');
|
||||
|
||||
deps.push('css!css/card.css');
|
||||
|
||||
require(deps, function () {
|
||||
|
||||
$.mobile.filterHtml = Dashboard.filterHtml;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue