jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/performancemanager.js

15 lines
252 B
JavaScript
Raw Normal View History

define(['browser'], function (browser) {
function getAnimationPerformance() {
if (browser.mobile) {
return 1;
}
return 5;
}
return {
getAnimationPerformance: getAnimationPerformance
};
});