Merge pull request #3143 from evazion/fix-post-versions-wordbreaks

Fix wordbreaks in tags on /post_versions
This commit is contained in:
Albert Yi
2017-06-12 15:16:40 -07:00
committed by GitHub

View File

@@ -6,10 +6,12 @@ module PostVersionsHelper
diff[:added_tags].each do |tag|
prefix = diff[:obsolete_added_tags].include?(tag) ? '+<ins class="obsolete">' : '<ins>+'
html << prefix + link_to(wordbreakify(tag), posts_path(:tags => tag)) + '</ins>'
html << " "
end
diff[:removed_tags].each do |tag|
prefix = diff[:obsolete_removed_tags].include?(tag) ? '-<del class="obsolete">' : '<del>-'
html << prefix + link_to(wordbreakify(tag), posts_path(:tags => tag)) + '</del>'
html << " "
end
diff[:unchanged_tags].each do |tag|
html << '<span>' + link_to(wordbreakify(tag), posts_path(:tags => tag)) + '</span>'