From: John Foerch Date: Sun, 2 Dec 2012 04:03:40 +0000 (-0500) Subject: string.js: whitespace X-Git-Tag: debian-1.0--pre-1+git160130-1~220 X-Git-Url: https://repo.or.cz/w/conkeror.git/commitdiff_plain/3942c1c58fd5fa70f7a0af19bc3b7c2fd069d24f string.js: whitespace --- 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; }