Skip to content

Commit

Permalink
minor adjustements in ann tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom-TBT committed Nov 24, 2024
1 parent 84a911b commit 9119372
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
<div>
&nbsp
<% if (idx < 20) { %>
- <b><%- link.parent.class %> <%- link.parent.id %>:</b> <% print(_.escape(link.parent.name).slice(0, 28)) %>
<b><%- link.parent.class %> <%- link.parent.id %>:</b> <% print(_.escape(link.parent.name).slice(0, 28)) %>
<% if (link.owner.id !== userId){
print("(" + link.owner.firstName.slice(0, 1) + " " + _.escape(link.owner.lastName) + ")")
} %>
Expand All @@ -71,7 +71,7 @@
<% if (isInherited && ann.links) { %>
<b>Inherited by:</b><br />
<% _.each(ann.childNames, function(cname) { %>
&nbsp- <%- cname.slice(0, 28) %><br />
&nbsp <%- cname.slice(0, 28) %><br />
<% }) %>
<% } %>
</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<div>
&nbsp
<% if (idx < 20) { %>
- <b><%- link.parent.class %> <%- link.parent.id %>:</b> <% print(_.escape(link.parent.name).slice(0, 28)) %>
<b><%- link.parent.class %> <%- link.parent.id %>:</b> <% print(_.escape(link.parent.name).slice(0, 28)) %>
<% if (link.owner.id !== userId){
print("(" + link.owner.firstName.slice(0, 1) + " " + _.escape(link.owner.lastName) + ")")
} %>
Expand All @@ -54,7 +54,7 @@
<% if (isInherited && ann.links) { %>
<b>Inherited by:</b><br />
<% _.each(ann.childNames, function(cname) { %>
&nbsp- <%- cname.slice(0, 28) %><br />
&nbsp <%- cname.slice(0, 28) %><br />
<% }) %>
<% } %>
</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<div>
&nbsp
<% if (idx < 20) { %>
- <b><%- link.parent.class %> <%- link.parent.id %>:</b> <%- link.parent.name.slice(0, 28) %>
<b><%- link.parent.class %> <%- link.parent.id %>:</b> <%- link.parent.name.slice(0, 28) %>
<% if (link.owner.id !== userId) {
print("(" + link.owner.firstName.slice(0, 1) + " " + _.escape(link.owner.lastName) + ")")
} %>
Expand All @@ -52,7 +52,7 @@
<% if (isInherited && tag.links) { %>
<b>Inherited by:</b><br />
<% _.each(tag.childNames, function(cname) { %>
&nbsp- <%- cname.slice(0, 28) %><br />
&nbsp <%- cname.slice(0, 28) %><br />
<% }) %>
<% } %>
</span>
Expand Down

0 comments on commit 9119372

Please sign in to comment.