Skip to content

Commit

Permalink
table to div remove tr/td (#38)
Browse files Browse the repository at this point in the history
Signed-off-by: olivier lamy <olamy@apache.org>
  • Loading branch information
olamy authored Dec 25, 2020
1 parent 0e2220f commit 7381105
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
</a>
</td>
</j:if>
</j:jelly>
</j:jelly>
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
<j:if test="${it.isLoggedIn()}">
<th>${%Fav}</th>
</j:if>
</j:jelly>
</j:jelly>
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
xmlns:t="/lib/hudson" xmlns:f="/lib/form">
<st:adjunct includes="hudson.plugins.favorite.assets"/>
<f:block>
<table id="favorites">
<div id="favorites">
<j:forEach var="favorite" items="${instance.favorites}">
<tr id="favrow_${favorite}">
<td>
<div id="favrow_${favorite}">
<div>
<a onclick="return toggleFavorite('${favorite}', this)" href="#">
<span id="fav_${favorite}" class="icon-fav-active icon-sm"></span>
</a>
</td>
<td>
</div>
<div>
<a href="${rootURL}/${descriptor.toItem(favorite).url}" >${favorite}</a>
</td>
</tr>
</div>
</div>
</j:forEach>
</table>
</div>
</f:block>
</j:jelly>
</j:jelly>

0 comments on commit 7381105

Please sign in to comment.