| OLD | NEW |
| 1 <!-- ============================ Logs View ============================ --> | 1 <!-- ============================ Logs View ============================ --> |
| 2 <div id=logsTabContent style="display: none;"> | 2 <div id=logsTabContent style="display: none;"> |
| 3 <h4>Network Log Data</h4> | 3 <h4>Network Log Data</h4> |
| 4 <button id=logsGlobalShowBtn class=logsGlobalButton>Show all...</button> | 4 <button id=logsGlobalShowBtn class=logsGlobalButton>Show all...</button> |
| 5 <button id=logsGlobalHideBtn class=logsGlobalButton>Hide all...</button> | 5 <button id=logsGlobalHideBtn class=logsGlobalButton>Hide all...</button> |
| 6 <button id=logsRefreshBtn class=logsGlobalButton>Refresh logs...</button> | 6 <button id=logsRefreshBtn class=logsGlobalButton>Refresh logs...</button> |
| 7 <div style="clear: both"></div> | 7 <div style="clear: both"></div> |
| 8 <table width=100% class=styledTable> | 8 <table width=100% class=styledTable> |
| 9 <thead> | 9 <thead> |
| 10 <tr id=logTableHeaderRow> | 10 <tr id=logTableHeaderRow> |
| 11 <th width=10%>Log Name</th> | 11 <th width=10%>Log Name</th> |
| 12 <th width=8%></th> | 12 <th width=8%></th> |
| 13 <th width=82%>Log</th> | 13 <th width=82%>Log</th> |
| 14 </tr> | 14 </tr> |
| 15 </thead> | 15 </thead> |
| 16 <tbody id=logTable> | 16 <tbody id=logTable> |
| 17 </tbody> | 17 </tbody> |
| 18 </table> | 18 </table> |
| 19 </div> | 19 </div> |
| OLD | NEW |