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

fix copy/paste

This commit is contained in:
Luke Pulverenti 2016-08-08 22:09:56 -04:00
parent b1feee2d1c
commit 274d8f6809
2 changed files with 37 additions and 18 deletions

View file

@ -2,7 +2,7 @@
function fadeInRight(elem) {
var pct = browserInfo.mobile ? '3.5%' : '0.5%';
var pct = browserInfo.mobile ? '4%' : '0.5%';
var keyframes = [
{ opacity: '0', transform: 'translate3d(' + pct + ', 0, 0)', offset: 0 },
@ -163,6 +163,10 @@
configureSwipeTabs: function (ownerpage, tabs) {
if (!browserInfo.touch) {
return;
}
var pageCount = ownerpage.querySelectorAll('.pageTabContent').length;
require(['hammer'], function (Hammer) {