Skip to content

Commit

Permalink
Update graphexp.html
Browse files Browse the repository at this point in the history
Makes info boxes selectable to allow copying data. By necessity you can only interact with the visualization in the empty space between the left and right boxes (if displayed) but this is much more intuitive than wholly blocking interaction with the text. Note, if this is a major problem, setting some max width formatting on the info boxes would be good.
  • Loading branch information
Peter-SouzaConsulting authored Apr 2, 2018
1 parent 8f8bd4c commit e539b38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions graphexp.html
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ <h1 class="header-heading">Graph Explorer v 0.6</h1>
<svg></svg>
</div>

<div class="aside left_bar" style="background-color:transparent;pointer-events:none;">
<div class="aside left_bar" style="background-color:transparent;pointer-events:auto;">
<div id="graphInfoBar" style="background-color:transparent;pointer-events:auto;">
<button name="graphInfo" onclick="get_graph_info();">Get graph info</button>
<input type="checkbox" name="showgraphinfo" id="showgraphinfo" onchange="show_hide_element('#graphInfo')"/>Show/hide graph info
Expand All @@ -82,7 +82,7 @@ <h1 class="header-heading">Graph Explorer v 0.6</h1>
</div>
</div>

<div class="aside right_bar" id="details" style="background-color:transparent;pointer-events:none;">
<div class="aside right_bar" id="details" style="background-color:transparent;pointer-events:auto;">
<div id="messageArea"></div><div id="outputArea"></div>
<div id="nodeInfo" style="background-color:transparent;pointer-events:none;">
</div>
Expand Down

0 comments on commit e539b38

Please sign in to comment.