diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2017-05-01 16:55:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-01 16:55:35 +0200 |
commit | a2f6fea4081e7920ed6cd33a96e2b80dc0c51303 (patch) | |
tree | c132f52ece820eb3368d7595feb0d61ebd415d09 /core/js/placeholder.js | |
parent | 99f98ca34337eb4e9908d569d6009f7d24e289e1 (diff) | |
parent | 11b9d224fd5a45c726bb878737581d6285cdab1f (diff) | |
download | nextcloud-server-a2f6fea4081e7920ed6cd33a96e2b80dc0c51303.tar.gz nextcloud-server-a2f6fea4081e7920ed6cd33a96e2b80dc0c51303.zip |
Merge pull request #4610 from nextcloud/js-semicolons
Fix semicolon at end of JS lines
Diffstat (limited to 'core/js/placeholder.js')
-rw-r--r-- | core/js/placeholder.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/placeholder.js b/core/js/placeholder.js index 1b03a28ecca..b8075b5397f 100644 --- a/core/js/placeholder.js +++ b/core/js/placeholder.js @@ -71,7 +71,7 @@ } function rgbToHsl(r, g, b) { - r /= 255, g /= 255, b /= 255; + r /= 255; g /= 255; b /= 255; var max = Math.max(r, g, b), min = Math.min(r, g, b); var h, s, l = (max + min) / 2; if(max === min) { |