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

restore people fields

This commit is contained in:
Luke Pulverenti 2015-08-21 11:34:42 -04:00
parent aa454b2f24
commit e17ea4ac1e
5 changed files with 52 additions and 12 deletions

View file

@ -6,12 +6,14 @@
menuItems.push({
name: Globalize.translate('OptionBackdropSlideshow'),
id: 'backdrops'
id: 'backdrops',
ironIcon: 'video-library'
});
menuItems.push({
name: Globalize.translate('OptionPhotoSlideshow'),
id: 'photos'
id: 'photos',
ironIcon: 'photo-library'
});
require(['actionsheet'], function () {
@ -176,7 +178,7 @@
var keyframes = [
{ opacity: '0', offset: 0 },
{ opacity: '1', offset: 1 }];
var timing = { duration: 1500, iterations: 1 };
var timing = { duration: 1200, iterations: 1 };
newCardImageContainer.animate(keyframes, timing).onfinish = onAnimationFinished;
} else {
onAnimationFinished();
@ -216,7 +218,7 @@
var keyframes = [
{ opacity: '1', offset: 0 },
{ opacity: '0', offset: 1 }];
var timing = { duration: 400, iterations: iterations };
var timing = { duration: 500, iterations: iterations };
return elem.animate(keyframes, timing);
}