exception handler: remove report to tt-rss.org
This commit is contained in:
parent
453ed4848e
commit
b55aec078c
|
@ -88,9 +88,6 @@ function exception_error(location, e, ext_info) {
|
||||||
|
|
||||||
content += "<div class='dlgButtons'>";
|
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\" "+
|
content += "<button dojoType=\"dijit.form.Button\" "+
|
||||||
"onclick=\"dijit.byId('exceptionDlg').hide()\">" +
|
"onclick=\"dijit.byId('exceptionDlg').hide()\">" +
|
||||||
__('Close') + "</button>";
|
__('Close') + "</button>";
|
||||||
|
@ -103,20 +100,6 @@ function exception_error(location, e, ext_info) {
|
||||||
id: "exceptionDlg",
|
id: "exceptionDlg",
|
||||||
title: "Unhandled exception",
|
title: "Unhandled exception",
|
||||||
style: "width: 600px",
|
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});
|
content: content});
|
||||||
|
|
||||||
dialog.show();
|
dialog.show();
|
||||||
|
|
Loading…
Reference in New Issue