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

update viewcontainer-lite.js

This commit is contained in:
Luke Pulverenti 2016-05-16 11:47:28 -04:00
parent 24662bdf6d
commit f00fc6ad15
3 changed files with 13 additions and 66 deletions

View file

@ -1166,7 +1166,7 @@ var Dashboard = {
// The native app can handle a little bit more than safari
if (AppInfo.isNativeApp) {
quality -= 10;
quality -= 5;
} else {
@ -1183,11 +1183,6 @@ var Dashboard = {
options.enableImageEnhancers = false;
}
if (AppInfo.forcedImageFormat && options.type != 'Logo') {
options.format = AppInfo.forcedImageFormat;
options.backgroundColor = '#1c1c1c';
}
},
loadExternalPlayer: function () {
@ -1472,8 +1467,6 @@ var AppInfo = {};
AppInfo.enableDetailPageChapters = false;
AppInfo.enableDetailsMenuImages = false;
AppInfo.enableMovieHomeSuggestions = false;
AppInfo.forcedImageFormat = 'jpg';
}
}
@ -1642,39 +1635,6 @@ var AppInfo = {};
});
}
function initFastClick() {
require(["fastclick"], function (FastClick) {
FastClick.attach(document.body, {
tapDelay: 0
});
function parentWithClass(elem, className) {
while (!elem.classList || !elem.classList.contains(className)) {
elem = elem.parentNode;
if (!elem) {
return null;
}
}
return elem;
}
// Have to work around this issue of fast click breaking the panel dismiss
document.body.addEventListener('touchstart', function (e) {
var tgt = parentWithClass(e.target, 'ui-panel-dismiss');
if (tgt) {
$(tgt).click();
}
});
});
}
function setDocumentClasses(browser) {
var elem = document.documentElement;