Skip to content

Commit 24e8f35

Browse files
committed
Update readme.md
1 parent b68f564 commit 24e8f35

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

readme.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# inline-console
22
Easily adds a JavaScript debugging console to the bottom of the page (creating an inline developer console).
33

4-
Built in browser consoles like you see in Chrome/FireFox are far better then this. However, this can be handy in situations where the browser does not provide a developer console, like with iOS's mobile safari.
4+
Built in browser consoles like those provided in Chrome or FireFox are far superior to what you will see in this console. However, this console is designed to help with situations where the browser does not provide a native developer console, <strong>like with iOS's mobile safari</strong>. So, for example, using this tool you can now have a developer console when working on an application on the iPad or iPhone even if you don't have a Mac handy.
55

66
To use this:
77
* Simple place the inline-console.js file in your web project (somewhere like /js/vendor if you are using something like HTML5Boilerplate.com).
@@ -10,3 +10,9 @@ To use this:
1010
<script src="/inline-console.min.js"></script>
1111
```
1212
That's it. Refresh your page and the developer console will appear at the bottum of the page.
13+
<hr />
14+
# Features
15+
* The console will display any console.log(), console.error(), console.warn(), or console.info() output.
16+
* Each type of output is color coded.
17+
* Any output that is longer then a few lines will also include a show/hide button to help make reading the output a bit easier.
18+
* The console also logs XMLHttpRequest calls, even if invoked by a framework like jQuery or AngularJS. The console will let you know when the request is sent, and when the response is received (and if it was an error). Each HTTP request will recieve a request number, so you can track multiple asyncronise HTTP requests.

0 commit comments

Comments
 (0)