Merge pull request #3587 from libretro/revert-3586-console

Revert "(Emscripten) Show/Hide the console"
This commit is contained in:
Twinaphex 2016-09-14 18:36:05 +02:00 committed by GitHub
commit 9eed1309e7
2 changed files with 1 additions and 13 deletions

View File

@ -114,7 +114,7 @@
</div>
<div class="container">
<div class="row">
<div class="col-sm-10 form-group btn-group text-xs-center p-t-2">
<div class="col-sm-12 form-group btn-group text-xs-center p-t-2">
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary" id="lblLocal" onclick=switchStorage("browser")>
<input type="radio" name="options" id="btnLocal" autocomplete="off" checked>
@ -128,11 +128,6 @@
</label>
</div>
</div>
<div class="col-sm-2 form-group btn-group text-xs-center p-t-2">
<button type="button" name="options" id="btnlogs" class="btn btn-info pull-xs-right">
<span class="fa fa-list"></span> Log
</button>
</div>
</div>
<div class="row">
<div class="col-sm-12 form-group btn-group text-xs-center p-t-2">

View File

@ -280,13 +280,6 @@ function switchStorage(backend) {
// When the browser has loaded everything.
$(function() {
// Hide the logging window and allow the user to show it.
$('#output').hide();
$('#btnlogs').click(function () {
$('#output').slideToggle();
});
/**
* Attempt to disable some default browser keys.
*/