diff options
author | Morris Jobke <hey@morrisjobke.de> | 2019-07-25 09:45:09 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2019-07-25 09:45:09 +0200 |
commit | 003e23520d12840a5806a46275db9c9499b5c17c (patch) | |
tree | 1fb1248bab118585fcd7af6b62ea610ddd221e1e /apps/files | |
parent | 5e02d715887e3781beb52cbe032f2f6f6241c949 (diff) | |
download | nextcloud-server-003e23520d12840a5806a46275db9c9499b5c17c.tar.gz nextcloud-server-003e23520d12840a5806a46275db9c9499b5c17c.zip |
Trigger fallback code to get max contrast value and use integer there
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/js/filelist.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index a210b6caac2..7a6665b0807 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -1541,12 +1541,15 @@ try { var maxContrastHex = window.getComputedStyle(document.documentElement) .getPropertyValue('--color-text-maxcontrast').trim() + if (maxContrastHex.length < 4) { + throw Error(); + } var maxContrast = parseInt(maxContrastHex.substring(1, 3), 16) } catch(error) { var maxContrast = OCA.Accessibility && OCA.Accessibility.theme === 'themedark' - ? '130' - : '118' + ? 130 + : 118 } // size column |