1
0
mirror of synced 2025-12-13 18:34:52 +08:00

Fix: Console input not available

This commit is contained in:
surunzi
2016-05-30 14:20:26 +08:00
parent a9691151be
commit fc439c11ee
3 changed files with 6 additions and 2 deletions

View File

@@ -8,7 +8,10 @@ Console for Mobile Browsers.
## Why ## Why
Logging things out on mobile browser is never an easy stuff. I used to include `window onerror alert` script inside pages to find out JavaScript errors, kind of stupid and inefficient. Desktop browser DevTools is great, and I wish there is a similar one on mobile side, which leads to the creation of Eruda. Logging things out on mobile browser is never an easy stuff. I used to include
`window onerror alert` script inside pages to find out JavaScript errors, kind
of stupid and inefficient. Desktop browser DevTools is great, and I wish there
is a similar one on mobile side, which leads to the creation of Eruda.
## Demo ## Demo

View File

@@ -1,6 +1,6 @@
{ {
"name": "eruda", "name": "eruda",
"version": "0.6.2", "version": "0.6.3",
"description": "Console for Mobile Browsers", "description": "Console for Mobile Browsers",
"main": "dist/eruda.js", "main": "dist/eruda.js",
"scripts": { "scripts": {

View File

@@ -88,6 +88,7 @@
font-size: 14px; font-size: 14px;
width: 100%; width: 100%;
height: 100%; height: 100%;
user-select: text;
} }
} }
} }