diff options
Diffstat (limited to 'js/codeq')
-rw-r--r-- | js/codeq/problem_list.js | 2 |
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++) { |