Fixed node preview.

This commit is contained in:
2017-03-01 16:33:17 +01:00
parent 8ff638d62e
commit a611b27ad9

View File

@@ -227,23 +227,24 @@ feature -- Form
do do
l_preview := attached {WSF_STRING} fd.item ("op") as l_op and then l_op.same_string ("Preview") l_preview := attached {WSF_STRING} fd.item ("op") as l_op and then l_op.same_string ("Preview")
if l_preview then if l_preview then
b.append ("<strong>Preview</strong><div class=%"preview%">") b.append ("<div class=%"preview-container%"><strong>Preview</strong><div class=%"preview%">")
if attached fd.string_item ("format") as s_format and then attached api.format (s_format) as f_format then if attached fd.string_item ("format") as s_format and then attached api.format (s_format) as f_format then
l_format := f_format l_format := f_format
end end
if attached fd.string_item ("title") as l_title then if attached fd.string_item ("title") as l_title then
b.append ("<strong>Title:</strong><div class=%"title%">" + html_encoded (l_title) + "</div>") b.append ("<strong>Title:</strong><div class=%"title%">" + html_encoded (l_title) + "</div>")
end end
if attached fd.string_item ("body") as l_body then if attached fd.string_item ("content") as l_content then
b.append ("<strong>Body:</strong><div class=%"body%">") b.append ("<strong>Content:</strong><div class=%"content%">")
if l_format /= Void then if l_format /= Void then
b.append (l_format.formatted_output (l_body)) b.append (l_format.formatted_output (l_content))
else else
b.append (html_encoded (l_body)) b.append (html_encoded (l_content))
end end
b.append ("</div>") b.append ("</div>")
end end
b.append ("</div>") b.append ("</div>")
b.append ("</div>")
end end
end end