Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
situx committed Sep 30, 2024
1 parent ea64ec3 commit bb52a08
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,21 +141,21 @@ <h1 id="title">Title</h1>

<button id="downloadButton" onclick="download()">Download</button><br/>
</div>
<dialog id="datasetDialog" style="float:left;float:top;top:0px;left:0px;position:fixed;z-index:4;">
<dialog id="datasetDialog" width="500" height="500">
<h3 id="datasettitle">Dataset</h3>
<table id="datasettable" width="100%"><thead id="datasettablehead"><tr><th>Property Type</th>
<th>Property</th><th id="samplehead">Samples</th></tr></thead>
<tbody id="datasettablebody"></tbody>
</table>
<button id="datasetDialogCloseButton" onclick="document.getElementById('datasetDialog').close()" style="right:0px">Close</button>
<button id="datasetDialogCloseButton" onclick="document.getElementById('datasetDialog').close()" style="float:right">Close</button>
</dialog>
<dialog id="relationDialog" style="float:left;float:top;top:0px;left:0px;position:fixed;z-index:5;">
<dialog id="relationDialog" width="500" height="500">
<h3 id="relationtitle">Relationview</h3>
<table id="relationtable" width="100%"><thead id="relationtablehead"><tr><th>Incoming Concept</th><th>Incoming Property</th><th>Concept</th><th>Outgoing Property</th><th>Outgoing Concept</th>
</tr></thead>
<tbody id="relationtablebody"></tbody>
</table>
<button id="relationDialogCloseButton" onclick="document.getElementById('relationDialog').close()" style="right:0px">Close</button>
<button id="relationDialogCloseButton" onclick="document.getElementById('relationDialog').close()" style="float:right">Close</button>
</dialog>
<div class="container-fluid">
<div class="row-fluid" id="main-wrapper">
Expand Down

0 comments on commit bb52a08

Please sign in to comment.