Merge pull request #237 from bikebike/development

Fix for javascript error reporting
This commit is contained in:
Godwin 2017-07-21 19:28:20 -07:00 committed by GitHub
commit a359aa23fb
2 changed files with 3 additions and 2 deletions

View File

@ -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) +

View File

@ -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;