summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2014-03-14 13:51:53 +0400
committerAndrew Dolgov <[email protected]>2014-03-14 13:51:53 +0400
commitb55aec078c18b3db85d34329be3f01364e383667 (patch)
tree647b36918ce01384e73fcf791abf26fc86842dd2 /js
parent453ed4848e9f953aed30ace1180b4fec3c24fcd2 (diff)
exception handler: remove report to tt-rss.org
Diffstat (limited to 'js')
-rw-r--r--js/functions.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/js/functions.js b/js/functions.js
index 1ad15fcc6..9e40ecf51 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -88,9 +88,6 @@ function exception_error(location, e, ext_info) {
content += "<div class='dlgButtons'>";
- content += "<button dojoType=\"dijit.form.Button\""+
- "onclick=\"dijit.byId('exceptionDlg').report()\">" +
- __('Report to tt-rss.org') + "</button> ";
content += "<button dojoType=\"dijit.form.Button\" "+
"onclick=\"dijit.byId('exceptionDlg').hide()\">" +
__('Close') + "</button>";
@@ -103,20 +100,6 @@ function exception_error(location, e, ext_info) {
id: "exceptionDlg",
title: "Unhandled exception",
style: "width: 600px",
- report: function() {
- if (confirm(__("Are you sure to report this exception to tt-rss.org? The report will include your browser information. Your IP would be saved in the database."))) {
-
- document.forms['exceptionForm'].params.value = $H({
- browserName: navigator.appName,
- browserVersion: navigator.appVersion,
- browserPlatform: navigator.platform,
- browserCookies: navigator.cookieEnabled,
- }).toQueryString();
-
- document.forms['exceptionForm'].submit();
-
- }
- },
content: content});
dialog.show();