Skip to content
Permalink
Browse files
Inserted zero width space character to wrap fingerprint line on small…
…er displays
  • Loading branch information
RaphaelBergmann committed Jan 20, 2017
1 parent 9c5c30b commit 49e8b14c9a7ab924d29f8428c7bce5c3a22173fc
Showing with 2 additions and 2 deletions.
  1. +1 −1 templates/details/bridge.html
  2. +1 −1 templates/details/router.html
@@ -40,7 +40,7 @@ <h3>Last Known Properties</h3>
<% } %>

<dt><span class="tip" data-content="Hash of 20-byte unique identifier of the bridge." data-original-title="Hashed Fingerprint">Hashed Fingerprint</span></dt>
<dd><tt><%= relay.get('fingerprint') %></tt></dd>
<dd><tt><%= relay.get('fingerprint').replace(/(.{20})/g,"$1&#8203;") %></tt></dd>

<dt><span class="tip" data-content="Flags that the directory authorities assigned to this bridge." data-original-title="Bridge flags">Flags</span></dt>
<dd><% _.each(relay.get('flags'), function(flag) { %>
@@ -69,7 +69,7 @@ <h3>Last Known Properties</h3>
<% } %>

<dt><span class="tip" data-content="20-byte unique identifier of the relay." data-original-title="Fingerprint">Fingerprint</span></dt>
<dd><tt><%= relay.get('fingerprint') %></tt></dd>
<dd><tt><%= relay.get('fingerprint').replace(/(.{20})/g,"$1&#8203;") %></tt></dd>

<dt><span class="tip" data-content="Flags that the directory authorities assigned to this relay." data-original-title="Relay flags">Flags</span></dt>
<dd><% _.each(relay.get('flags'), function(flag) { %>

0 comments on commit 49e8b14

Please sign in to comment.