-
Notifications
You must be signed in to change notification settings - Fork 696
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[JENKINS-64147] Forwards compat with table-to-div (#528)
* Forwards compat with table-to-div * Add missing taglib file Co-authored-by: res0nance <[email protected]> Co-authored-by: Tim Jacomb <[email protected]>
- Loading branch information
1 parent
f21a54f
commit dac2e7e
Showing
4 changed files
with
22 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?jelly escape-by-default='true'?> | ||
<j:jelly xmlns:j="jelly:core" xmlns:d="jelly:define"> | ||
<!-- TODO remove and switch to div after baseline is 2.264 or newer --> | ||
<j:choose> | ||
<j:when test="${divBasedFormLayout}"> | ||
<div> | ||
<d:invokeBody/> | ||
</div> | ||
</j:when> | ||
<j:otherwise> | ||
<table style="width:100%"> | ||
<d:invokeBody/> | ||
</table> | ||
</j:otherwise> | ||
</j:choose> | ||
</j:jelly> |
Empty file.