summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-09-13 14:43:38 +0400
committerAndrew Dolgov <[email protected]>2010-09-13 14:43:38 +0400
commit0dfdf70816eb7ec94ac8d009829cf6ad4c4d162f (patch)
tree69f43fa64d1116e6b78a6e067a81bc4bb5efba24 /functions.js
parent45d9a6e761fd7ea5d044ae3c94f96cc4716e31cf (diff)
exception reports: show stack trace
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/functions.js b/functions.js
index b3fc8876a..59ff28efb 100644
--- a/functions.js
+++ b/functions.js
@@ -46,12 +46,12 @@ function exception_error(location, e, ext_info) {
if (ext_info) {
ebc.innerHTML += "<div><b>Additional information:</b></div>" +
- "<textarea readonly=\"1\">" + ext_info + "</textarea>";
+ "<textarea readonly=\"1\">" + ext_info + "</textarea>";
}
ebc.innerHTML += "<div><b>Stack trace:</b></div>" +
"<textarea readonly=\"1\">" + e.stack + "</textarea>";
-
+
} else {
alert(msg);
}