mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Force spacing around operators
This commit is contained in:
parent
4662e19567
commit
f897f7484c
5 changed files with 9 additions and 8 deletions
|
@ -92,7 +92,7 @@ import layoutManager from 'layoutManager';
|
|||
* @return {number} Eased value in range [0, 1].
|
||||
*/
|
||||
function ease(t) {
|
||||
return t*(2 - t); // easeOutQuad === ease-out
|
||||
return t * (2 - t); // easeOutQuad === ease-out
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -402,8 +402,8 @@ import layoutManager from 'layoutManager';
|
|||
|
||||
k = ease(k);
|
||||
|
||||
const x = ox + dx*k;
|
||||
const y = oy + dy*k;
|
||||
const x = ox + dx * k;
|
||||
const y = oy + dy * k;
|
||||
|
||||
builtinScroll(xScroller, x, yScroller, y, false);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue