mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-04 14:44:26 +08:00
Merge pull request #1784 from okriuchykhin/ok_SCI_3485
Remove protocol description from preview popup [SCI-3485]
This commit is contained in:
commit
952f716d9a
1 changed files with 6 additions and 13 deletions
|
@ -49,25 +49,18 @@ module ProtocolStatusHelper
|
||||||
|
|
||||||
def protocol_status_popover_content(protocol)
|
def protocol_status_popover_content(protocol)
|
||||||
if protocol_private_for_current_user?(protocol)
|
if protocol_private_for_current_user?(protocol)
|
||||||
res = "<p><em>" + I18n.t("my_modules.protocols.protocol_status_bar.private_protocol_desc") + "</em></p>"
|
res = '<p><em>' + I18n.t('my_modules.protocols.protocol_status_bar.private_protocol_desc') + '</em></p>'
|
||||||
else
|
else
|
||||||
res = "<p>"
|
res = '<p><b>' + I18n.t('my_modules.protocols.protocol_status_bar.keywords') + ':</b> '
|
||||||
if protocol.description.present?
|
if protocol.protocol_keywords.size.positive?
|
||||||
res << protocol.tinymce_render(:description)
|
|
||||||
else
|
|
||||||
res << "<em>" + I18n.t("my_modules.protocols.protocol_status_bar.no_description") + "</em>"
|
|
||||||
end
|
|
||||||
res << "</p>"
|
|
||||||
res << "<p><b>" + I18n.t("my_modules.protocols.protocol_status_bar.keywords") + ":</b> "
|
|
||||||
if protocol.protocol_keywords.size > 0
|
|
||||||
protocol.protocol_keywords.each do |kw|
|
protocol.protocol_keywords.each do |kw|
|
||||||
res << kw.name + ", "
|
res << kw.name + ', '
|
||||||
end
|
end
|
||||||
res = res[0..-3]
|
res = res[0..-3]
|
||||||
else
|
else
|
||||||
res << "<em>" + I18n.t("my_modules.protocols.protocol_status_bar.no_keywords") + "</em>"
|
res << '<em>' + I18n.t('my_modules.protocols.protocol_status_bar.no_keywords') + '</em>'
|
||||||
end
|
end
|
||||||
res << "</p>"
|
res << '</p>'
|
||||||
end
|
end
|
||||||
escape_input(res)
|
escape_input(res)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue