From 4c2528f53add63ab0d1d26434de2eed01dbca643 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Fri, 14 Feb 2014 14:52:05 +0000 Subject: [PATCH] Use {{#commaList}} helper to render subjects, avoiding long character strings with no spaces that HTML can't render properly in small areas. --- tools/htdocs/mkws.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index 0e7902e..b9f13ef 100644 --- a/tools/htdocs/mkws.js +++ b/tools/htdocs/mkws.js @@ -824,7 +824,8 @@ function team($, teamName) { \ {{#first location having="md-subject"}}\ {{#if md-subject}}\ - {{md-subject}}\ + {{#commaList md-subject}}\ + {{this}}{{/commaList}}\ {{/if}}\ {{/first}}\ \ -- 1.7.10.4