From 2ce86af0590f133c551c1601ce2320e96aade98c Mon Sep 17 00:00:00 2001 From: thomasb Date: Tue, 20 Mar 2012 22:47:24 +0000 Subject: Add support for read-only address book records git-svn-id: https://svn.roundcube.net/trunk@6023 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/js/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'roundcubemail/program/js') diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index 94e48a823..53a67c7ad 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/program/js/app.js @@ -4229,7 +4229,7 @@ function rcube_webmail() }; // add row to contacts list - this.add_contact_row = function(cid, cols, select) + this.add_contact_row = function(cid, cols, classes) { if (!this.gui_objects.contactslist) return false; @@ -4238,7 +4238,7 @@ function rcube_webmail() row = document.createElement('tr'); row.id = 'rcmrow'+this.html_identifier(cid); - row.className = 'contact'; + row.className = 'contact ' + (classes || ''); if (list.in_selection(cid)) row.className += ' selected'; -- cgit v1.2.3