You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Diff tables currently show the "after" results of the diff, and there is no easy way to compare those results to the "before" data. It would be nice to be able to mouseover a table cell or row to show the previous results.
Useful HTML code:
<!-- Javascript has to be in this wrapper div to avoid flickering. --><divonmouseover="document.getElementById('label2').style.display='block'; document.getElementById('table1').style.display='none';" onmouseout="document.getElementById('label1').style.display='block'; document.getElementById('table2').style.display='none';"><divid="label1"><!-- Visible element here. --></div><divid="label2" style="display: none;" ><!-- Element to view on mouseover here. --></div></div>
The text was updated successfully, but these errors were encountered:
Diff tables currently show the "after" results of the diff, and there is no easy way to compare those results to the "before" data. It would be nice to be able to mouseover a table cell or row to show the previous results.
Useful HTML code:
The text was updated successfully, but these errors were encountered: