From c533fb4b7430c5c9e194bde7a047b7479c758130 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Sun, 2 Dec 2012 17:06:59 +0000 Subject: [PATCH 1/1] Display formatted notes in the web UI --- .../javascripts/templates/notes/show.jst.ejs | 7 +++---- app/assets/stylesheets/common.css.scss | 18 +++++++++++++++--- 2 files changed, 18 insertions(+), 7 deletions(-) diff --git a/app/assets/javascripts/templates/notes/show.jst.ejs b/app/assets/javascripts/templates/notes/show.jst.ejs index eb3a1474b..028f4d084 100644 --- a/app/assets/javascripts/templates/notes/show.jst.ejs +++ b/app/assets/javascripts/templates/notes/show.jst.ejs @@ -1,7 +1,7 @@

<%- I18n.t('javascripts.notes.show.title', { id: note.id }) %>

<% note.comments.forEach(function (comment) { %> -

+

<% if (comment.user) { %> <%= I18n.t('javascripts.notes.show.event', { @@ -14,9 +14,8 @@ }) %> <% } %> -
- <%- comment.text %> -

+
<%= comment.html %>
+
<% }) %> <% if (note.status == "open") { %>
diff --git a/app/assets/stylesheets/common.css.scss b/app/assets/stylesheets/common.css.scss index 53fa9ccf3..5174e475d 100644 --- a/app/assets/stylesheets/common.css.scss +++ b/app/assets/stylesheets/common.css.scss @@ -1428,7 +1428,19 @@ abbr.geo { /* Rules for the notes interface */ -.note .buttons { - margin-top: 5px; - text-align: right; +.note { + .comment_body { + margin-top: 4px; + margin-bottom: 4px; + + p { + margin-top: 0px; + margin-bottom: 0px; + } + } + + .buttons { + margin-top: 5px; + text-align: right; + } } -- 2.45.1