~heckyel/plyr

b93dcc43ad22525354eb89e9e34c601e8a0924e3 — Sam Potts 3 years ago 6ff6ff1
fix: minor syntax tweak
1 files changed, 1 insertions(+), 1 deletions(-)

M src/js/utils/style.js
M src/js/utils/style.js => src/js/utils/style.js +1 -1
@@ 87,7 87,7 @@ export function setAspectRatio(input) {
  }

  const [x, y] = ratio;
  const useNative = window.CSS ? window.CSS.supports(`aspect-ratio: ${x} / ${y}`) : false;
  const useNative = window.CSS ? window.CSS.supports(`aspect-ratio: ${x}/${y}`) : false;
  const padding = (100 / x) * y;

  if (useNative) {