diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-05-14 20:54:24 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-05-14 20:54:24 +0200 |
commit | 92b1f6591067cdd28ef3079287381399f1868667 (patch) | |
tree | e3155e86293dcc980df121c387125d7b931a46bf /program/js/list.js | |
parent | 4f7ab00dfbd9d6c8493988dd517d182accbfd56e (diff) | |
parent | 3c67157971dd1fc823cb1aa73cc26851a1f19f6c (diff) |
Merge branch 'master' of github.com:roundcube/roundcubemail
Diffstat (limited to 'program/js/list.js')
-rw-r--r-- | program/js/list.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/js/list.js b/program/js/list.js index c21ba713f..9f5ae3c65 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -252,7 +252,7 @@ blur: function() for (n in this.selection) { id = this.selection[n]; if (this.rows[id] && this.rows[id].obj) { - $(this.rows[id].obj).removeClass('selected').addClass('unfocused'); + $(this.rows[id].obj).removeClass('selected focused').addClass('unfocused'); } } }, @@ -611,7 +611,7 @@ get_first_row: function() for (i=0, len=rows.length-1; i<len; i++) if (rows[i].id && String(rows[i].id).match(/^rcmrow([a-z0-9\-_=\+\/]+)/i) && this.rows[RegExp.$1] != null) - return RegExp.$1; + return RegExp.$1; } return null; |