From 18014e968df0f19b69dd862e83d24bb505844ea5 Mon Sep 17 00:00:00 2001 From: ericrius1 Date: Fri, 19 Jun 2015 19:00:42 -0700 Subject: [PATCH] removed horizontal "line break" style comment blocks --- examples/utilities.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/utilities.js b/examples/utilities.js index 3c2423c914..b60576b23e 100644 --- a/examples/utilities.js +++ b/examples/utilities.js @@ -9,13 +9,13 @@ // Distributed under the Apache License, Version 2.0. // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html -////***************** UTILITIES ************************************* + map = function(value, min1, max1, min2, max2) { return min2 + (max2 - min2) * ((value - min1) / (max1 - min1)); } -hslToRgb = function (hslColor) { +hslToRgb = function(hslColor) { var h = hslColor.hue; var s = hslColor.sat; var l = hslColor.light;