From 3942c1c58fd5fa70f7a0af19bc3b7c2fd069d24f Mon Sep 17 00:00:00 2001 From: John Foerch Date: Sat, 1 Dec 2012 23:03:40 -0500 Subject: [PATCH] string.js: whitespace --- modules/string.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/string.js b/modules/string.js index eeff8a6..13cf984 100644 --- a/modules/string.js +++ b/modules/string.js @@ -85,7 +85,8 @@ function html_escape (str) { */ function get_spaces (n) { var x = ""; - while (x.length < n) x += " "; + while (x.length < n) + x += " "; return x; } -- 2.11.4.GIT