From 11b9d224fd5a45c726bb878737581d6285cdab1f Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Mon, 1 May 2017 00:42:53 -0300 Subject: Fix semicolon at end of JS lines Signed-off-by: Morris Jobke --- core/js/placeholder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/js/placeholder.js') 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) { -- cgit v1.2.3