summaryrefslogtreecommitdiff
path: root/web-ui/app/js/mail_list/ui/mail_list.js
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/app/js/mail_list/ui/mail_list.js')
-rw-r--r--web-ui/app/js/mail_list/ui/mail_list.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/web-ui/app/js/mail_list/ui/mail_list.js b/web-ui/app/js/mail_list/ui/mail_list.js
index dc1402ed..da79f20b 100644
--- a/web-ui/app/js/mail_list/ui/mail_list.js
+++ b/web-ui/app/js/mail_list/ui/mail_list.js
@@ -112,22 +112,8 @@ define(
this.updateSelected = function (ev, data) {
if (data.ident !== this.attr.currentMailIdent) {
- this.uncheckCurrentMail();
this.attr.currentMailIdent = data.ident;
}
- this.checkCurrentMail();
- };
-
- this.checkCurrentMail = function () {
- $('#mail-' + this.attr.currentMailIdent + ' input:checkbox')
- .attr('checked', true)
- .trigger('change');
- };
-
- this.uncheckCurrentMail = function () {
- $('#mail-' + this.attr.currentMailIdent + ' input:checkbox')
- .attr('checked', false)
- .trigger('change');
};
this.cleanSelected = function () {