summaryrefslogtreecommitdiff
path: root/program
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2014-07-05 12:43:05 +0200
committerAleksander Machniak <alec@alec.pl>2014-07-05 12:49:07 +0200
commitbda3e7d2396f2995e9505de06660b8806214fc11 (patch)
tree56957a05ef291fddf2ccc36b400c736f2a19cf43 /program
parent7152d0fdefc0cb60b26c928342436604479dc610 (diff)
- Fix Delete button state after deleting identity/response (#1489972)
Diffstat (limited to 'program')
-rw-r--r--program/js/app.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/program/js/app.js b/program/js/app.js
index 6ca84c315..25f7b1eee 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -5654,6 +5654,8 @@ function rcube_webmail()
frame.location.href = this.env.blankpage;
}
}
+
+ this.enable_command('delete', false);
};
this.remove_identity = function(id)
@@ -5667,6 +5669,8 @@ function rcube_webmail()
frame.location.href = this.env.blankpage;
}
}
+
+ this.enable_command('delete', false);
};