diff --git a/scripts/system/fingerPaint/html/colorsTab.html b/scripts/system/fingerPaint/html/colorsTab.html
index 6f54fabf0c..bc957c2e59 100644
--- a/scripts/system/fingerPaint/html/colorsTab.html
+++ b/scripts/system/fingerPaint/html/colorsTab.html
@@ -106,7 +106,7 @@
addColors();
- function clampColors(colorArray){
+ function clampColors(colorArray) {
colorArray[0] = Math.min(Math.max(colorArray[0], 0), 255);
colorArray[1] = Math.min(Math.max(colorArray[1], 0), 255);
colorArray[2] = Math.min(Math.max(colorArray[2], 0), 255);