/posts: word wrap long sources in sidebar.

* Don't truncate long sources in the sidebar on the post show page. Word
  wrap them instead.
* Word wrap long external links in general (mainly links in dtext).
* Turn sources into links on modqueue page.
This commit is contained in:
evazion
2019-10-13 18:53:46 -05:00
parent ee6f7a1d7e
commit 20f28910da
5 changed files with 12 additions and 4 deletions

View File

@@ -85,7 +85,7 @@ module ApplicationHelper
text = text.truncate(truncate) if truncate
if url =~ %r!\Ahttps?://!i
link_to text, url, rel: "noreferrer nofollow", **link_options
link_to text, url, rel: "external noreferrer nofollow", **link_options
else
url
end