The log bar is hidden by CSS, but will appear briefly while the page is loading (after the html is fetched, but before dev.css is fetched). Hide it by using an inline style instead, so this does not happen. GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3220
13 lines
526 B
HTML
13 lines
526 B
HTML
<div class="dev-top-bar" id="dev-top-bar" style="display: none">
|
|
<link href="assets/css/dev.css" rel="stylesheet">
|
|
<div class="row">
|
|
<div class="col-xs-4"><b>DEV</b></div>
|
|
<div id="log" class="col-xs-8">
|
|
<span>
|
|
JS:
|
|
<span class="dev-error fa fa-exclamation-triangle"> errors <span id="log_error">0</span></span>
|
|
<span class="dev-warn fa fa-frown-o"> warn <span id="log_warn">0</span></span>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div> |