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

rework storage of PresentationUniqueKey

This commit is contained in:
Luke Pulverenti 2016-08-12 15:11:45 -04:00
parent b2fa34662d
commit b6e47ab6ec
6 changed files with 21 additions and 96 deletions

View file

@ -150,12 +150,8 @@
requestAnimationFrame(function () {
if (pos) {
options.target.style.transform = 'translate3d(' + pos + 'px, 0, 0)';
options.target.style.WebkitTransform = 'translate3d(' + pos + 'px, 0, 0)';
options.target.style.MozTransform = 'translate3d(' + pos + 'px, 0, 0)';
} else {
options.target.style.transform = 'none';
options.target.style.WebkitTransform = 'none';
options.target.style.MozTransform = 'none';
}
});
};