summaryrefslogtreecommitdiffstats
path: root/core/js/placeholder.js
diff options
context:
space:
mode:
Diffstat (limited to 'core/js/placeholder.js')
-rw-r--r--core/js/placeholder.js2
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) {