Skip to content

Commit

Permalink
add table class to all tables
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosr committed Jan 26, 2021
1 parent 8346ecb commit 4c75bfc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/ds-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -21591,7 +21591,7 @@ class TableRenderer {

createEnum(property, depth, rmBorderBottom) {
depth++;
return '' + '<td colspan="2" class="depth' + depth + ' innerTable"' + rmBorderBottom + '>' + '<table class="enumTable">' + '<tr>' + '<td class="enumTd"><b>' + property.data.dsRange + '</b></td>' + '<td class="enumTd">' + property.data.dsDescription + '</td>' + '</tr>' + (property.data.enuMembers ? this.genHTML_enuMembers(property.data.enuMembers) : '') + '</table>' + '</td>';
return '' + '<td colspan="2" class="depth' + depth + ' innerTable"' + rmBorderBottom + '>' + '<table class="table enumTable">' + '<tr>' + '<td class="enumTd"><b>' + property.data.dsRange + '</b></td>' + '<td class="enumTd">' + property.data.dsDescription + '</td>' + '</tr>' + (property.data.enuMembers ? this.genHTML_enuMembers(property.data.enuMembers) : '') + '</table>' + '</td>';
}

genHTML_enuMembers(enuMemberArray) {
Expand Down
Loading

0 comments on commit 4c75bfc

Please sign in to comment.