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

update selection buttons

This commit is contained in:
Luke Pulverenti 2015-07-14 12:39:34 -04:00
parent 59a3cada00
commit 1c27cdeb2c
35 changed files with 226 additions and 115 deletions

View file

@ -1715,6 +1715,12 @@ var AppInfo = {};
AppInfo.directPlayAudioContainers = [];
AppInfo.directPlayVideoContainers = [];
}
if (isCordova && isIOS) {
AppInfo.moreIcon = 'more-horiz';
} else {
AppInfo.moreIcon = 'more-vert';
}
}
function initializeApiClient(apiClient) {
@ -1780,7 +1786,9 @@ var AppInfo = {};
require(["bower_components/fastclick/lib/fastclick"], function (FastClick) {
FastClick.attach(document.body);
FastClick.attach(document.body, {
tapDelay: 0
});
// Have to work around this issue of fast click breaking the panel dismiss
$(document.body).on('touchstart', '.ui-panel-dismiss', function () {
@ -1845,7 +1853,7 @@ var AppInfo = {};
}
}
if ($.browser.msie && ($.browser.version || 11) <= 10) {
if ($.browser.msie && $.browser.tv && ($.browser.version || 11) <= 10) {
Dashboard.importCss('thirdparty/paper-ie10.css');
}