Skip to content

Commit

Permalink
Convert those <nobr> tags to CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
saintamh committed Jan 16, 2017
1 parent e3e5ad4 commit 1285c9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/views/notifier/changeset_comment_notification.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
<% end %>

<p>
<%= raw t 'notifier.changeset_comment_notification.details', :url => content_tag("nobr", link_to(@changeset_url, @changeset_url)) %>
<%= raw t 'notifier.changeset_comment_notification.details', :url => link_to(@changeset_url, @changeset_url, :style => "white-space: nowrap") %>
</p>

<% content_for :footer do %>
<p>
<%= raw t 'notifier.changeset_comment_notification.unsubscribe', :url => content_tag("nobr", link_to(@changeset_url, @changeset_url, :style => "color: #222")) %>
<%= raw t 'notifier.changeset_comment_notification.unsubscribe', :url => link_to(@changeset_url, @changeset_url, :style => "color: #222; white-space: nowrap") %>
</p>
<% end %>

0 comments on commit 1285c9f

Please sign in to comment.