diff options
author | Sam Potts <sam@potts.es> | 2020-06-27 21:59:35 +1000 |
---|---|---|
committer | Sam Potts <sam@potts.es> | 2020-11-14 13:01:36 +1100 |
commit | c3e163741fd5a4a88e56c9d425109f2014c8511f (patch) | |
tree | c1651e8b90d096a6000595d03d533a6e15ac0a0e /src/js/utils/style.js | |
parent | 1c715bc88922e20360c7ad2d5b625cccb16247fa (diff) | |
download | plyr-c3e163741fd5a4a88e56c9d425109f2014c8511f.tar.lz plyr-c3e163741fd5a4a88e56c9d425109f2014c8511f.tar.xz plyr-c3e163741fd5a4a88e56c9d425109f2014c8511f.zip |
Linting changes
Diffstat (limited to 'src/js/utils/style.js')
-rw-r--r-- | src/js/utils/style.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/utils/style.js b/src/js/utils/style.js index c2004fcb..fcb089b4 100644 --- a/src/js/utils/style.js +++ b/src/js/utils/style.js @@ -27,7 +27,7 @@ export function reduceAspectRatio(ratio) { } export function getAspectRatio(input) { - const parse = ratio => (validateRatio(ratio) ? ratio.split(':').map(Number) : null); + const parse = (ratio) => (validateRatio(ratio) ? ratio.split(':').map(Number) : null); // Try provided ratio let ratio = parse(input); |