| | |
| | | this.enable_command('logout', true); |
| | | |
| | | // disable browser's contextmenus |
| | | //document.oncontextmenu = function(){ return false; } |
| | | document.oncontextmenu = function(){ return false; } |
| | | |
| | | // load body click event |
| | | document.onmousedown = function(){ return rcube_webmail_client.reset_click(); }; |
| | |
| | | this.list_rows = this.contact_rows; |
| | | |
| | | if (this.env.cid) |
| | | this.select(this.env.cid); |
| | | this.highlight_row(this.env.cid); |
| | | }; |
| | | |
| | | |
| | |
| | | this.list_rows = this.identity_rows; |
| | | |
| | | if (this.env.iid) |
| | | this.select(this.env.iid); |
| | | this.highlight_row(this.env.iid); |
| | | }; |
| | | |
| | | |
| | |
| | | |
| | | for (var n in this.list_rows) |
| | | if (!filter || this.list_rows[n][filter]==true) |
| | | this.select(n, true); |
| | | this.highlight_row(n, true); |
| | | }; |
| | | |
| | | |
| | |
| | | this.set_page_buttons(); |
| | | }; |
| | | |
| | | // replace content of quota display |
| | | this.set_quota = function(text) |
| | | { |
| | | if (this.gui_objects.quotadisplay) |
| | | this.gui_objects.quotadisplay.innerHTML = text; |
| | | }; |
| | | |
| | | |
| | | // update the mailboxlist |
| | | this.set_unread_count = function(mbox, count, set_title) |