summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@fri.uni-lj.si>2016-02-28 19:39:49 +0100
committerTimotej Lazar <timotej.lazar@fri.uni-lj.si>2016-02-28 19:39:49 +0100
commit9de619cde9a51a8c7d2cf3e8dbffeca3b4fc94a0 (patch)
tree0fc364a7e2b736988a2620a1ef53dee05382ffeb
parent3d172c3f2018c2caa0a7b9af369fdfcdea9db03a (diff)
Problem list: allow multi-paragraph group descriptions
-rw-r--r--js/codeq/problem_list.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/codeq/problem_list.js b/js/codeq/problem_list.js
index 21d376b..728f28c 100644
--- a/js/codeq/problem_list.js
+++ b/js/codeq/problem_list.js
@@ -226,7 +226,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
// title: HTML structure for "name" and "desc"
html.push('<h1 class="language-title" ', ta(langDict.name), '></h1><hr>');
- html.push('<p class="language-description" ', ta(langDict.description), '></p>');
+ html.push('<div class="language-description" ', ta(langDict.description), '></div>');
// content: problem directory
for (i = 0; i < groups.length; i++) {