Merge pull request #237 from bikebike/development
Fix for javascript error reporting
This commit is contained in:
commit
a359aa23fb
@ -2,7 +2,7 @@
|
||||
window.onerror = function(message, url, lineNumber, column, errorObj) {
|
||||
//save error and send to server for example.
|
||||
var request = new XMLHttpRequest();
|
||||
request.open('POST', '/js_error', true);
|
||||
request.open('POST', '/js_error/', true);
|
||||
request.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8');
|
||||
request.send(
|
||||
'message=' + encodeURI(message) +
|
||||
|
@ -192,6 +192,7 @@ code {
|
||||
max-width: $max-table-width;
|
||||
overflow: auto;
|
||||
box-sizing: border-box;
|
||||
line-height: 1.25em;
|
||||
|
||||
&.signature {
|
||||
margin: 0 0 1em;
|
||||
@ -232,7 +233,6 @@ pre {
|
||||
padding: 0.5em;
|
||||
margin: 0;
|
||||
border-bottom: 1px solid #DDD;
|
||||
//white-space: nowrap;
|
||||
|
||||
&:nth-child(odd) {
|
||||
margin-right: -3px;
|
||||
@ -295,6 +295,7 @@ h3 {
|
||||
width: 100%;
|
||||
max-width: 800px;
|
||||
overflow: auto;
|
||||
margin-bottom: 2em;
|
||||
|
||||
th, td {
|
||||
border: 1px solid #CCC;
|
||||
|
Loading…
x
Reference in New Issue
Block a user