summaryrefslogtreecommitdiff
path: root/js/App.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-12 08:00:25 +0300
committerAndrew Dolgov <[email protected]>2021-02-12 08:00:25 +0300
commiteac7ad5d343493c7a757e85f9d9cd6229a2b4fca (patch)
tree2c076b7d895c2e4fbd9f3a30af69675e568d9813 /js/App.js
parent4182018cb78c1b5f11058e61fef141db4f510003 (diff)
remove explainError server-side dlg
Diffstat (limited to 'js/App.js')
-rw-r--r--js/App.js7
1 files changed, 2 insertions, 5 deletions
diff --git a/js/App.js b/js/App.js
index db7797b75..45de8cf0e 100644
--- a/js/App.js
+++ b/js/App.js
@@ -433,7 +433,7 @@ const App = {
console.log("RI:", k, "=>", v);
if (k == "daemon_is_running" && v != 1) {
- Notify.error("<span onclick=\"App.explainError(1)\">Update daemon is not running.</span>", true);
+ Notify.error("Update daemon is not running.", true);
return;
}
@@ -446,7 +446,7 @@ const App = {
}
if (k == "daemon_stamp_ok" && v != 1) {
- Notify.error("<span onclick=\"App.explainError(3)\">Update daemon is not updating feeds.</span>", true);
+ Notify.error("Update daemon is not updating feeds.", true);
return;
}
@@ -530,9 +530,6 @@ const App = {
this.initSecondStage();
},
- explainError: function(code) {
- return this.displayDlg(__("Error explained"), "explainError", code);
- },
Error: {
fatal: function (error, params) {
params = params || {};