From 9a0fa5a1705547a0d722ebd35f6fa9f3bb3b6146 Mon Sep 17 00:00:00 2001 From: Anton Romanov Date: Sat, 17 Nov 2018 12:31:22 +0400 Subject: [PATCH] fix delete button --- src/main/resources/public/js/papers.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/public/js/papers.js b/src/main/resources/public/js/papers.js index 70b9f8b..bd0c116 100644 --- a/src/main/resources/public/js/papers.js +++ b/src/main/resources/public/js/papers.js @@ -6,14 +6,14 @@ function showPapers(papersElement, paperRowClass) { getFromRest(urlPapers, function (paperList) { paperList.forEach(function (paper, index) { $(papersElement).parent().append("
" + - "
" + + "
" + " \n" + " " + " " + " " + " " + (index + 1) + ". " + paper.title + "
" + - "
" + + "
" + "" + "" + "
");